hi to all, i am working for a site,which is in php.....i want to rewrite url
e.g www.3idiots.co.in/stories.php?id=17
if i want to rewrite it as
www.3idiots.co.in/stories/17.html
can any one tell me the code for this to write in .htaccess file.?
|
|
hi to all, i am working for a site,which is in php.....i want to rewrite url
if i want to rewrite it as
can any one tell me the code for this to write in .htaccess file.? |
||||
|
|
|
mod_rewrite can only rewrite/redirect requested URIs and not those that are in your HTML documents. So you should first make sure, that your PHP application is printing the correct URIs, so After that, you can use the rule suggested by José Basilio:
Though redirecting requests of
|
||
|
|
|
|
I'm assuming you're using Apache with mod_rewrite. Something like
should do the trick. Of course you'll need to make sure that RewriteRule is allowed in that directory. See this wiki page for more information. |
|||