301 重定向。需要帮助。过得很艰难

发布于 2024-08-06 04:22:42 字数 377 浏览 4 评论 0原文

我正在尝试使用 mod_rewrite 来重定向 URL,但没有任何效果。这是我希望做的:

旧网址:

http://www.example.com/asp.pl?_puri=astore.amazon.com%2Fthegi02-20%2Fdetail%2FB0001L0DFA%2Fassid

需要重定向到:

www.example .com

有人知道有什么方法可以做到这一点吗?

I'm trying to use mod_rewrite to redirect URLs and can't get anything to work. Here is what I'm hoping to do:

Old URL:

http://www.example.com/asp.pl?_puri=astore.amazon.com%2Fthegi02-20%2Fdetail%2FB0001L0DFA%2Fassid

Needs to redirect to:

www.example.com

Anyone know of any way to do that?

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

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

发布评论

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

评论(1

夏末的微笑 2024-08-13 04:22:42

重定向 以及所有其他Redirect* 指令仅适用于 URL 路径。因此您无法测试该查询。

但是使用 mod_rewrite 你可以:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^_puri=astore.amazon.com&thegi02-20&detail&B0001L0DFA&assid$
RewriteRule ^asp\.pl$ http://www.example.com/ [L,R=301]

Redirect and all the other Redirect* directives do only work with the URL path. So you cannot test the query.

But with mod_rewrite you can:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^_puri=astore.amazon.com&thegi02-20&detail&B0001L0DFA&assid$
RewriteRule ^asp\.pl$ http://www.example.com/ [L,R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文