重定向[R = 301]在.htaccess中结束下一次迭代?

问题描述

我有一个简单的.htaccess:

RewriteEngine On

RewriteBase /

RewriteRule ^foo3$ foo2
RewriteRule ^foo2$ foo1
RewriteRule ^foo1$ index.php

当我键入URL https://localhost/foo3时,它遵循de rewrite“ chain”并终止于index.php。没关系。

但是对于这个.htaccess:

RewriteEngine On

RewriteBase /

RewriteRule ^foo3$ foo2 [R=301]
RewriteRule ^foo2$ foo1
RewriteRule ^foo1$ index.php

我原本希望它可以级联到index.php(忽略重定向),但是浏览器首先将301重定向到https://localhost/foo2(浏览器反映了该URL),然后.htaccess从那里向下“继续”到index.php。

在这种情况下,R=301是否像[END]指令一样起作用?

解决方法

在这种情况下,R=301是否像[END]指令一样起作用?

没有END无效,但L(最后一个)有效。请了解ENDL的行为有所不同。

因此,Apache将301发送到浏览器,浏览器进行完全重定向,然后再次将/foo2发送到Web服务器,然后执行第二条规则和第三条规则。


更新

感谢下面的@MrWhite发表评论,我在保持重写日志到trace4的同时运行了该测试。

配置以启用重写日志记录:

LogLevel info rewrite:trace4

这是我的Apache错误日志中的其他日志。请注意,我的本地主机名是localhost,我的DocumentRoot/www/root

步骤:应用规则1,URI为/foo3

strip per-dir prefix: /www/root/foo3 -> foo3
applying pattern '^foo3$' to uri 'foo3'
rewrite 'foo3' -> 'foo2'
add per-dir prefix: foo2 -> /www/root/foo2
explicitly forcing redirect with http://localhost/www/root/foo2

步骤:应用规则2,URI为http://localhost/www/root/foo2(请注意,您的RewriteBase /尚未生效):

applying pattern '^foo2$' to uri 'http://localhost/www/root/foo2'

步骤:应用规则3,URI为http://localhost/www/root/foo2

applying pattern '^foo1$' to uri 'http://localhost/www/root/foo2'

步骤:通过使用您的301值剥离DocumentRoot来应用外部重定向RewriteBase

trying to replace prefix /www/root/ with /
add subst prefix: foo2 -> foo2
escaping http://localhost/foo2 for redirect
redirect to http://localhost/foo2 [REDIRECT/301]

步骤:应用规则1,URI为/foo2

strip per-dir prefix: /www/root/foo2 -> foo2
applying pattern '^foo3$' to uri 'foo2'

步骤:应用规则2,URI为/foo2

strip per-dir prefix: /www/root/foo2 -> foo2
applying pattern '^foo2$' to uri 'foo2'
rewrite 'foo2' -> 'foo1'

步骤:应用规则3,URI为/foo1

add per-dir prefix: foo1 -> /www/root/foo1
strip per-dir prefix: /www/root/foo1 -> foo1
applying pattern '^foo1$' to uri 'foo1'
rewrite 'foo1' -> 'index.php'

步骤:内部重写为/index.php

add per-dir prefix: index.php -> /www/root/index.php
trying to replace prefix /www/root/ with /
add subst prefix: index.php -> /index.php
internal redirect with /index.php [INTERNAL REDIRECT]

步骤:应用规则1,URI为/index.php

strip per-dir prefix: /www/root/index.php -> index.php
applying pattern '^foo3$' to uri 'index.php'

步骤:应用规则2,URI为/index.php

strip per-dir prefix: /www/root/index.php -> index.php
applying pattern '^foo2$' to uri 'index.php'

步骤:应用规则3,URI为/index.php

strip per-dir prefix: /www/root/index.php -> index.php
applying pattern '^foo1$' to uri 'index.php'

步骤:停止规则处理,URI为/index.php

pass through /www/root/index.php

我已经添加了详细的跟踪日志记录和上面的step评论,以显示L的副作用是 ,其中规则处理并未完全停止。但是,mod_rewrite引擎尝试将其余规则应用于无效的 URI上,即http://localhost/www/root/foo2这些规则将不会执行,并且将导致完全重定向。

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...