使用REGEX重定向特定的URL模式

时间:2018-07-25 20:12:45

标签: regex .htaccess url

我想重定向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]

但是我似乎终生无法得到它。

1 个答案:

答案 0 :(得分:2)

您不能以RewriteRule模式匹配URL QueryString([[String]])。您需要为此使用?topic=val

RewriteCond