1

I have an html page with SSI and I was trying for enabling SSI in my apache (V 2.4.18) running on Ubuntu 16.04. As per the guidelines here, I tried editing /etc/apache2/apache2.conf file and now included following directives,

<Directory /var/www/>
Options FollowSymLinks
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml 
AllowOverride None
Require all granted
</Directory>

But SSI is not working. Can anyone give direction?

Donjin
  • 11
  • 3

1 Answers1

1

You need to enable mod_include, execute this form terminal:

sudo a2enmod include 
sudo systemctl restart apache2
jcubic
  • 230
  • 1
  • 4
  • 14