您好,这是我的htaccess
{{1}}
我想重定向
/index.php?page=geschaeftsleitung到/buero.html
但根据我的规则,我得到http://www.example.ch/buero.html?page=philosophie
如何重写规则,以便在新链接的最后我没有得到?page = philosophie?
答案 0 :(得分:1)
尝试:
RewriteEngine On
RewriteCond %{QUERY_STRING} page=philosophie
RewriteRule ^index\.php$ http://www.example.ch/buero.html? [R=301,L]
“?”在重写目标的末尾删除查询字符串。