htaccess文件中的301重定向,带有“问号”的网址

时间:2016-06-10 13:34:49

标签: apache .htaccess redirect

我想在htaccess文件中进行单个301重定向,其中重定向的url有一个问号

要重定向的网址:

重定向到以下新网址:

有人可以在htacess文件中添加一行吗?

提前感谢您的回复。

帕特里克

1 个答案:

答案 0 :(得分:0)

您可以使用以下规则

RewriteEngine on

RewriteCond %{THE_REQUEST} /index\.html\?target=page_100.\html [NC]
RewriteRule ^ /new.html? [L,R=301]

这将重定向请求

  • /index.html?target=page_100.html

  • /new.html

规则结束时的对于从新网址中丢弃旧查询字符串非常重要。