Changing urls in apache 2.2
I have an apache 2.2 and php5 server run开发者_StackOverflow社区ning on ubuntu 10.10. I am trying to make a url /anything/page.php change to /page.php?var=anything.
With Apache mod_rewrite
then you can set something like this in your Apache conf file or in a .htaccess file
RewriteEngine On
RewriteRule ^/(.*)/page.php$ /page.php?var=$1
see more here
精彩评论