添加 SSI 支持会导致 mod_dir“尾部斜杠”重定向停止工作

添加 SSI 支持会导致 mod_dir“尾部斜杠”重定向停止工作

我已使用 .htaccess 中的以下指令启用了 SSI

AddHandler server-parsed .html
AddOutputFilter INCLUDES html

但是,当我添加这些时,尾随斜杠重定向停止工作。

例如。http://testwp.humbug.in/test/index.html工作正常

http://testwp.humbug.in/测试/不起作用。

在 chrome 中,它会出现“错误 324 (net::ERR_EMPTY_RESPONSE)”错误,而在 Firefox 中它会显示一个空白页。

为了使 mod_dir 和 mod_include 正常工作,我需要哪些额外的配置?

答案1

在 Dreamhost 论坛上得到了答案:

先尝试指定 RemoveOutputFilter 指令?我认为问题可能是输出已经经过了 DEFLATE (gzip)。

http://discussion.dreamhost.com/thread-130315.html

因此添加

RemoveOutputFilter html

在 AddOutputFilter 之前,效果很好

相关内容