SSI包括无法在Apache上使用Debian


12

我正在尝试让SSI在运行Apache的Debian上运行,但是.shtml文件没有被解析。从PHP文件中,phpinfo()我可以看到已加载的模块部分中显示以下内容:

mod_mime_xattr mod_mime mod_mime_magic

/etc/apache2/mods-enabled/mime.conf我有(其中包括):

AddType text/html .shtml
AddOutputFilter INCLUDES .shtml

/etc/apache2/sites-enabled/domain.com.conf(对于有问题的虚拟主机)中,我有:

<Directory /home/username/public_html>
Options +Includes
allow from all
AllowOverride All 
</Directory>

为了很好地衡量,我还添加了以下内容:

<Directory />
Options +Includes
</directory>

在用户的.htaccess文件中,我尝试添加:

Options +Includes
AddType text/html shtml
AddHandler server-parsed shtml

似乎没有任何作用。我该如何调试呢?

编辑:

ls /etc/apache2/mods-enabled/如果有帮助,这里是输出

actions.conf          dav_svn.load         proxy_balancer.load
actions.load          deflate.conf         proxy.conf
alias.conf            deflate.load         proxy_connect.load
alias.load            dir.conf             proxy_http.load
auth_basic.load       dir.load             proxy.load
auth_digest.load      env.load             python.load
authn_file.load       fcgid.conf           reqtimeout.conf
authz_default.load    fcgid.load           reqtimeout.load
authz_groupfile.load  mime.conf            rewrite.load
authz_host.load       mime.load            ruby.load
authz_user.load       mime_magic.conf      setenvif.conf
autoindex.conf        mime_magic.load      setenvif.load
autoindex.load        mime-xattr.load      ssl.conf
cgi.load              negotiation.conf     ssl.load
dav_fs.conf           negotiation.load     status.conf
dav_fs.load           php5.conf            status.load
dav.load              php5.load            suexec.load
dav_svn.conf          proxy_balancer.conf

当您访问.shtml页面时,您在Apache错误日志中看到任何内容吗?
Zoredache

其实,是。在error.log中[error] an unknown filter was not added: includes
-Mike

注释掉该行AddOutputFilter INCLUDES .shtml可以消除错误,但仍然不能解决问题
Mike

好,我知道了。如果其他人也有同样的问题,我会发表我的答案。
Mike

Answers:


12

为了使服务器端包含工作,include还需要加载模块。您可以通过以root用户身份执行以下操作来执行此操作:

a2enmod include

或执行以下命令:

ln -s /etc/apache2/mods-available/include.conf /etc/apache2/mods-enabled/include.conf
ln -s /etc/apache2/mods-available/include.load /etc/apache2/mods-enabled/include.load

然后重新启动apache。

请注意,如果您要将SSI添加到.shtml文件中,则.htaccess可以这样做AddOutputFilter INCLUDES .shtml。或者替换.shtml为服务器端要解析的任何文件类型。

当前的Debian配置文件/etc/apache2/mods-available/mime.conf包含一个错误,因为它添加了以下内容:

<IfModule mod_mime.c>
[...]
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
[...]
</IfModule>

无需先检查是否mod_include.c已加载。为了解决这个问题,您可以将这些行更改为:

<IfModule mod_mime.c>
[...]
<IfModule mod_include.c>
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
</IfModule>
[...]
</IfModule>

<IfModule>标签可以被嵌套。这将消除您在mod_include.c未加载事件中遇到的错误消息。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.