使用 htaccess 从重定向的 URL 中删除查询字符串

问题描述:

我正在使用以下代码将流量重定向到特定页面(此流量是通过谷歌从以前使用我的服务器 IP 的旧站点来的)

I'm using the following code to redirect traffic to a spesific page (this traffic is coming via google from an old site which used to use my servers ip)

RewriteRule ^viewtopic.php?/?$ http://www.myurl.org.uk/ [L,R=301]

据我所知,这个 ^viewtopic.php?/?$ 应该去掉查询字符串,但它不起作用.任何帮助表示赞赏.

As I understand it this ^viewtopic.php?/?$ should strip away the query string but it isn't working. Any help appreciated.

示例网址

http://www.myurl.org.uk/viewtopic.php?f=3&t=44207&start=2265

重定向时的输出

http://www.myurl.org.uk/?f=3&t=44207&start=2265

您已经接近答案了...您的 ? 是错误的.将其放在重定向端以去除查询字符串:

You were close to the answer... You have the ? on the wrong side. Put it on the redirect side to strip off the query string:

RewriteRule ^viewtopic.php http://www.myurl.org.uk/? [L,R=301]

在 301 重定向中,mod_rewrite 通常会附加完整的查询字符串.但是在重写的 URL 末尾放置一个 ? 而没有相应的 [QSA] ("querystring append") 标志将指示它使用您提供的空白查询字符串.

In a 301 redirect, mod_rewrite will normally append the full query string. But placing a ? at the end of your rewritten URL without a corresponding [QSA] ("querystring append") flag will instruct it instead to use the blank query string you supplied.