根据查询字符串设置 htaccess 重定向

发布于 2024-10-25 08:12:29 字数 468 浏览 1 评论 0原文

我想重定向旧页面,如下所示:

http://www.agriturismoborgobiaia.it/index.php?option=com_content&view=article&id=47&Itemid=54&lang=en

http://www.agriturismoborgobiaia.it/

仅当查询字符串包含某些值时。

我怎样才能做到这一点?

I want to redirect old pages like this:

http://www.agriturismoborgobiaia.it/index.php?option=com_content&view=article&id=47&Itemid=54&lang=en

to

http://www.agriturismoborgobiaia.it/

Only if query string contains certains value.

How can I do that?

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

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

发布评论

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

评论(2

标点 2024-11-01 08:12:29

所以你必须使用apache的mod_rewrite(或者无论你的引擎是什么)

RewriteEngine On
RewriteCond %{QUERY_STRING} <a regex here>
RewriteRule ^.*$ http://www.agriturismoborgobiaia.it/ [R,L]

看看Clean URL,< a href="http://httpd.apache.org/docs/current/misc/rewriteguide.html" rel="nofollow">重写指南 和 mod_rewrite 文档 作为参考:

So you have to use mod_rewrite of apache (or whatever your engine is)

RewriteEngine On
RewriteCond %{QUERY_STRING} <a regex here>
RewriteRule ^.*$ http://www.agriturismoborgobiaia.it/ [R,L]

Look at Clean URL, Rewriting Guide and mod_rewrite documentation as references :

饮湿 2024-11-01 08:12:29

在您的 .htaccess

Redirect 301 oldpage newpage

In your .htaccess

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