RedirectMatch 301 结尾不带变量的通配符

发布于 2024-08-09 17:12:22 字数 335 浏览 8 评论 0原文

如何使用通配符重定向一组页面,并且末尾不附加变量?例如,下面的 .htaccess 代码:

RedirectMatch 301 /general/old_events_page.php(.*) http://mysite.org/events

产生:

mysite.org/events?id=749&Friendly=1&date=20090308

但我只想它转到 http://mysite.org/events

How do You do a re-direct a group of pages with a wildcard that doesn't attach the variables at the end? For example, the .htaccess code below:

RedirectMatch 301 /general/old_events_page.php(.*) http://mysite.org/events

Yields this:

mysite.org/events?id=749&friendly=1&date=20090308

But I just want it to go to http://mysite.org/events

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

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

发布评论

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

评论(2

七禾 2024-08-16 17:12:22

尝试这个 mod_rewrite 规则:

RewriteEngine on
RewriteRule ^general/old_events_page\.php$ /events? [L,R=301]

Try this mod_rewrite rule:

RewriteEngine on
RewriteRule ^general/old_events_page\.php$ /events? [L,R=301]
一杯敬自由 2024-08-16 17:12:22

您需要使用 RewriteCond + RewriteRule 来实现此目的。

RewriteCond 评估规则应用的条件

RewriteRule 是规则本身

无论如何......这应该是技巧;

RewriteEngine on
RewriteCond %{REQUEST_URI} /general/old_events_page.php
RewriteRule .? /events$1? [R=301,L]

You'll need to use RewriteCond + RewriteRule to achieve this.

RewriteCond evaluates the conditions for which the rule applies

RewriteRule is the rule itself

Anyway... This should the trick;

RewriteEngine on
RewriteCond %{REQUEST_URI} /general/old_events_page.php
RewriteRule .? /events$1? [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文