所以,不幸的是我正在使用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/
答案 0 :(得分:1)
附加?
以清除查询字符串。
RewriteCond %{QUERY_STRING} ^do=(editprofile|editoptions)$ RewriteRule ^forum/profile.php$ /user_profile/edit/? [R=301,L]