Apache 重写所有 url,除了以某些路径开头的 URL

发布于 2024-12-24 03:25:04 字数 676 浏览 0 评论 0原文

我正在尝试重定向除以某些路径开头的请求之外的所有请求。

例如,

http://www.example.com/mypath1 不应该重定向

http://www.example.com/mypath2 不应该重定向

其他所有内容应该重定向

到目前为止,我尝试仅使用异常路径之一使其工作,如下所示:

RewriteRule ^(?!/mypath1/).*$ http://www.google.com/? [R=301,L]

和这样:

RewriteCond %{REQUEST_URI} !^/mypath1/.* [NC]
RewriteRule ^.*$ http://www.google.com/? [R=301,L]`

和这样:

RewriteCond %{REQUEST_FILE} !^/mypath1/.* [NC]
RewriteRule ^.*$ http://www.google.com/? [R=301,L]

但是我的一切try 只是重定向所有请求。 有谁知道该怎么做?

I'm trying to redirect all requests except those beginning with certain paths.

for example,

http://www.example.com/mypath1 shouldn't redirect

http://www.example.com/mypath2 shouldn't redirect

Everything else should redirect

So far ive tried getting it working using just one of the exception paths like this:

RewriteRule ^(?!/mypath1/).*$ http://www.google.com/? [R=301,L]

and like this:

RewriteCond %{REQUEST_URI} !^/mypath1/.* [NC]
RewriteRule ^.*$ http://www.google.com/? [R=301,L]`

and like this:

RewriteCond %{REQUEST_FILE} !^/mypath1/.* [NC]
RewriteRule ^.*$ http://www.google.com/? [R=301,L]

However everything I try is just redirecting all requests.
Does anyone know how to do this?

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

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

发布评论

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

评论(1

叹梦 2024-12-31 03:25:04

我已经成功解决了这个问题,我发出的请求后来在 apache 配置中被重定向到一个错误页面,然后该页面被 catch all 重定向捕获。

如果其他人也遇到类似问题,我建议使用 apache RewriteLog,因为这有助于查明问题。为此,只需将其添加到您的 VHOST 中:

RewriteEngine on
RewriteLog "C:/devenv/Apache2/logs/rewrite.log"  
RewriteLogLevel 2

I've managed to resolve the issue, the request I was making was getting redirected later in the apache config to an error page which was then being caught by the catch all redirect.

If anyone else is having similar issues I recommend using the apache RewriteLog as this helped pinpoint the issue. To do this just add this in your VHOST:

RewriteEngine on
RewriteLog "C:/devenv/Apache2/logs/rewrite.log"  
RewriteLogLevel 2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文