嘿,我知道我可以使用HTACCESS重写来编写
www.mysite.com/index.php?page=hello&subpage=welcome
到
www.mysite.com/1/hello/welcome
但有没有办法将其重写为
www.mysite.com/hello/welcome
...
答案 0 :(得分:1)
呃,只需修改你的规则即可。这样的事情应该有效:
RewriteRule ^(.*?)/(.*?)/$ index.php?page=$1&subpage=$2 [NC,L]