0

我在 Apache 日志中收到以下错误消息:

unable to include potential exec "header.html" in parsed file /Users/sikusiku/Sites/ss-git/homepage.shtml

我基本上试图从homepage.shtml中包含header.html我在homepage.html中使用了非常基本的指令(header.htmlhomepage.shtml都位于文档根目录中):

<!--#include virtual="header.html" -->

我想我已经在httpd.conf中正确打开了 SSI :

Options Indexes FollowSymLinks ExecCGI Includes
...
AddType text/html .shtml
...
# XBitHack doesn't have anything to do with this, but I added it anyway.
XBitHack on

我错过了什么吗?包含的文件 ie header.html是否需要进行不同的配置?

4

1 回答 1

1

我刚刚在 ubuntu 服务器 11.10 上用 apache2 自己解决了这个问题。

我的 /etc/apache2/sites-available/默认文件:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

</VirtualHost>

我在 /var/www 目录指令中将 AllowOverride None 更改为 All。

我在 /var/www/.htaccess 中的 .htaccess 文件:

Options +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml

最后我确保 include.load 在 mods-enabled 文件夹中,这是为了加载 mod_includes.so 模块。

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

这会在 mods-available 中创建一个指向 include.load 的符号链接。

最后重启apache

sudo service apache2 restart

这使它对我有用,希望你也能正常工作。

——托马斯

于 2012-02-07T20:05:40.863 回答