gpt4 book ai didi

Apache RewriteRule [L] 标志被忽略

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:21:22 24 4
gpt4 key购买 nike

我正在尝试配置 Apache 重写规则。我的网站目录包含三个文件

index.html
index2.html
index3.html

我正在使用这些 Apache 重写规则:

RewriteRule index.html /index2.html [R=301,L]
RewriteRule index2.html /index3.html [R=301,L]

根据 Apache 关于 [L] option 的文档:

The [L] flag causes mod_rewrite to stop processing the rule set. In most contexts, this means that if the rule matches, no further rules will be processed.

因此,当我请求 index.html 时,我希望 index2.html 得到服务。然而,对 index.html 的请求最终出现在 index3.html 中。 [L] 选项不应该停止第二个 RewriteRule 的处理吗?

我使用的 Apache 版本是 2.4.39 (Fedora)。类似问题was asked here .

最佳答案

我意识到 .htaccess 中的规则会根据每个请求进行处理。当我访问 http://www.example.com/index.html 时会发生一些操作:

  1. .index.html 被请求
  2. 处理.htaccess 中的第一条规则。它匹配 index.html 并重定向到 index2.html[L]停止处理后续规则
  3. 请求index2.html
  4. 处理.htaccess 中的第一条规则。它无法匹配 index.html,因此未应用标志 [R=301,L]
  5. 处理 .htaccess 中的第二条规则。它匹配 index2.html 并重定向到 index3.html[L]停止处理后续规则

我找到了两种可能的解决方案:

  • 将重写规则从 /var/www/html/.htaccess 移至 /etc/httpd/sites-available/example.com.conf。与针对每个请求进行处理的 .htaccess 不同,example.com.conf 仅在服务器启动时处理一次。

  • 保留 .htaccess 中的规则,但使用 [END] 标志而不是 [L]

第一种解决方案的优点是规则只被处理一次。

关于Apache RewriteRule [L] 标志被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57243173/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com