My client’s non-WordPress site installed just fine on Local.
But it makes extensive use of Server Side Includes. I can’t find a way to enable that, although a related file “include.load” seems to be inside a Local sub-directory named “mods-available”
We use SSI for HTML prototyping. We enabled it by editing the apache configuration file via SSH:
- SSH to local environment
- Edit /etc/apache2/apache.conf: you can use
nano /etc/apache2/apache.conf
- Add this to the bottom of the file:
LoadModule incude_module /usr/lib/apache2/modules/mod_include.so
- Restart Apache server:
runservice apache2 restart
- Add the lines below to your .htaccess file:
AddType text/html .shtml
AddHandler server-parsed .shtml
Options Indexes FollowSymLinks Includes
Reference: https://gist.github.com/apedregosa/f7f0edab7f4fb88d1eb689265dff6bb4