I'm not expert in .htaccess. I want to rewrite my news and blog url (with or without www) as:
bdnews24.com/reporter.php?u=Name
to-> bdnews24.com/Name
m.bdnews24.com/reporter.php?u=Name
to-> m.bdnews24.com/Name
img.bdnews24.com/image.php?id=791011.jpg
to-> img.bdnews24.com/791011.jpg
bdnews24.com/details.php?id=100200300
to-> bdnews24.com/100200300
My current .htaccess file is below, which is not working as I want it.
This catches all request URI and if not exist it will go to index.php?u=ANYTHING
Options +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# AlegroCart REWRITES START
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php/$1 [L,QSA]
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…