使用 htaccess 从重定向的 URL 中删除查询字符串 [英] Remove query string from redirected URL with htaccess

查看:27
本文介绍了使用 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.

这篇关于使用 htaccess 从重定向的 URL 中删除查询字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆