htaccess 重定向删除查询字符串

发布于 2024-10-21 06:11:45 字数 309 浏览 0 评论 0原文

我当前正在使用此 301 重定向:

redirect 301 /oldurl http://www.domain.com/newurl

问题是我得到了

http://www.domain.com/newurl?/oldurl

What Syntax would I use with a RewriteRule instead for every url so I don't get the query string on the end?

I am using this 301 redirect currently:

redirect 301 /oldurl http://www.domain.com/newurl

the problem is I get

http://www.domain.com/newurl?/oldurl

What syntax would i use with a RewriteRule instead for each url so I don't get the query string on the end?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯了 2024-10-28 06:11:45

可以提供有关旧 url 和新 url 值的更多详细信息,但鉴于提供的信息:

RewriteRule ^oldurl$  newurl  [R=301,L]

Could do with some more details on the values for old and new url, but given the information provided:

RewriteRule ^oldurl$  newurl  [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文