• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Require some SSI help, not working for .html

M

mvidberg

Guest
On our old server, server side includes would work on .html files, now with 8.1.1, it only works on .shtml files.

I can make it work on .html files by changing

AddOutputFilter INCLUDES .shtml

to

AddOutputFilter INCLUDES .shtml .html

in /etc/httpd/conf/httpd.conf, but that change won't stick.

Where/how do I add this change to make it stick (so it won't revert the next time a new domain is added in plesk)?

Thanks for any help!
 
I'm not sure how to do that "server wide" but you can do it on individual domains by adding this to an .htaccess file in the domain's web root:
Code:
Options +Includes
AddHandler server-parsed .html
AddHandler server-parsed .htm
 
Back
Top