我想重定向URL的
https://old-URL.com/index.php?topic= {integers}至https://new-URL.com/index.php?topic= {integers}
我尝试过:
RewriteEngine On
RewriteRule ^\/index\.php\?topic=(.*) https://new-URL.com/ [R=301]
但是我似乎终生无法得到它。
答案 0 :(得分:2)
您不能以RewriteRule模式匹配URL QueryString([[String]]
)。您需要为此使用?topic=val
。
RewriteCond