没有文件名的重定向URL

时间:2019-09-18 09:51:00

标签: .htaccess redirect mod-rewrite url-rewriting

我需要重新输入以下网址:

https://www.domain.de/?topic=bla&ID=11111&serie=2222

https://www.domain.de

我尝试过此方法,但不起作用:

RewriteRule ^?topic=(.*)$ https://www.domain.de [R=301,L]

1 个答案:

答案 0 :(得分:0)

知道了...

RewriteCond %{QUERY_STRING} topic [NC]
RewriteRule .* https://www.domain.de? [R=301,L]