• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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