重定向除一个请求之外的所有请求

发布于 2024-11-07 02:52:41 字数 303 浏览 1 评论 0原文

我想知道如何将所有请求重定向

foobar.com/cat
foobar.com/cat/1
foobar.com/etc

foobar.com/index.php

但不影响

foobar.com/webmaster/

我不希望 foobar.com/webmaster/ 重定向到index.php。我想要它的默认行为

如何使用 mod_rewrite 做到这一点?

I wonder how to redirect all requests like

foobar.com/cat
foobar.com/cat/1
foobar.com/etc

to

foobar.com/index.php

But not to affect

foobar.com/webmaster/

I don`t want foobar.com/webmaster/ to redirect to index.php. I want it default behavior

How to do that with mod_rewrite?

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

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

发布评论

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

评论(2

愿得七秒忆 2024-11-14 02:52:42
RewriteEngine on

RewriteRule ^webmaster/ - [QSA,L]
RewriteRule .* index.php [QSA,L]
RewriteEngine on

RewriteRule ^webmaster/ - [QSA,L]
RewriteRule .* index.php [QSA,L]
瘫痪情歌 2024-11-14 02:52:42

尝试使用 foobar.com/(?!webmaster)[\​​w\/\d\_\-\:\;\?\=\.]+ 作为正则表达式来匹配除foobar.com/webmaster/

应用此正则表达式来选择除 foobar.com/webmaster/ 之外的所有内容,并使用

foobar.com/cat
foobar.com/cat/1
foobar.com/etc

add 替换为

foobar.com/index.php

try this foobar.com/(?!webmaster)[\w\/\d\_\-\:\;\?\=\.]+ as your regular expression to match all other except foobar.com/webmaster/

Apply this regex to select all except foobar.com/webmaster/ and match with

foobar.com/cat
foobar.com/cat/1
foobar.com/etc

add replace with

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