我有一个带有 SSI 的 html 页面,我试图在运行于 Ubuntu 16.04 的 apache (V 2.4.18) 中启用 SSI。根据指南这里,我尝试编辑 /etc/apache2/apache2.conf 文件,现在包含以下指令,
<Directory /var/www/>
Options FollowSymLinks
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
AllowOverride None
Require all granted
</Directory>
但 SSI 不起作用。有人能指点一下吗?
答案1
您需要启用mod_include,从终端执行此操作:
sudo a2enmod include
sudo systemctl restart apache2