I want that when I enter to
http://localhost/web/post/136
It will go to
http://localhost/web/file/home/page.php?post=136
This is what I did:
RewriteEngine on
RewriteRule ^/post/([0-9]+)$ file/home/page.php?post=$1 [last]
What I need to change?
As per your comment , To fix the js ,css and other relative links on rewritten urls ,you can add the following base tag to the head of your document :
<base href="/">