.htaccess查询字符串与静态页面

时间:2010-05-03 13:34:04

标签: .htaccess

所以,不幸的是我正在使用vBulletin和Kohana,我的整合有点复杂锁定vBulletin。做一些重写,特别是:

RewriteCond %{QUERY_STRING} ^do=(editprofile|editoptions)$
RewriteRule ^forum/profile.php$ /user_profile/edit/ [R=301,L]

/user_profile/edit/?do=editprofile

回来

我需要/user_profile/edit/

1 个答案:

答案 0 :(得分:1)

附加?以清除查询字符串。

RewriteCond %{QUERY_STRING} ^do=(editprofile|editoptions)$
RewriteRule ^forum/profile.php$ /user_profile/edit/? [R=301,L]