HTACCESS Rewrite Multidimensional(例如:www.mysite.com/variable2/variable2

时间:2011-03-21 15:22:35

标签: .htaccess

嘿,我知道我可以使用HTACCESS重写来编写

  

www.mysite.com/index.php?page=hello&subpage=welcome

  

www.mysite.com/1/hello/welcome

但有没有办法将其重写为

  

www.mysite.com/hello/welcome

...

1 个答案:

答案 0 :(得分:1)

呃,只需修改你的规则即可。这样的事情应该有效:

RewriteRule ^(.*?)/(.*?)/$  index.php?page=$1&subpage=$2 [NC,L]