• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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