.htaccess 重写条件

发布于 2024-12-08 14:27:24 字数 501 浏览 1 评论 0原文

此规则在 .htaccess 文件中工作得很好:

ErrorDocument 403 /AccessDenied.html
ErrorDocument 404 /NotFound.html
RewriteEngine on
RewriteBase /
RewriteRule ^(index(\.(html|htm))?)$ / [R]

作为条件编写的相同规则不起作用:

ErrorDocument 403 /AccessDenied.html
ErrorDocument 404 /NotFound.html
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} ^(index(\.(html|htm))?)$
RewriteRule ^(index(\.(html|htm))?)$ / [R]

我想我的问题是为什么该规则在第一个场景中有效,但在第二个场景中不起作用?我该如何解决它?

This rule works just fine in a .htaccess file:

ErrorDocument 403 /AccessDenied.html
ErrorDocument 404 /NotFound.html
RewriteEngine on
RewriteBase /
RewriteRule ^(index(\.(html|htm))?)$ / [R]

The same rule written as a conditional doesn't work:

ErrorDocument 403 /AccessDenied.html
ErrorDocument 404 /NotFound.html
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} ^(index(\.(html|htm))?)$
RewriteRule ^(index(\.(html|htm))?)$ / [R]

I suppose my question is that why is the rule working in the first scenario, but not in the second? And how can I fix it?

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

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

发布评论

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

评论(1

哑剧 2024-12-15 14:27:24

我相信您的问题是 RewriteBase 处理(始终删除前导斜杠)不会影响 %{REQUEST_URI} 等变量,并且不适用于 无论如何,RewriteCond 都会进行处理。

因此,模式 ^(index(\.(html|htm))?)$RewriteRule 中可以正常工作,但在 RewriteCond 中则不行> 根据请求 URI 进行匹配。您需要包含前导斜杠(至少如果您使用开头 ^ 锚点):

RewriteCond %{REQUEST_URI} ^/(index(\.(html|htm))?)$

I believe your problem is that the RewriteBase processing (which always strips the leading slash) doesn't affect variables like %{REQUEST_URI} and doesn't apply for RewriteCond processing anyway.

So, the pattern ^(index(\.(html|htm))?)$ will work fine in a RewriteRule, but not a RewriteCond matching against the request URI. You need to include that leading slash (at least if you're using the beginning ^ anchor):

RewriteCond %{REQUEST_URI} ^/(index(\.(html|htm))?)$
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文