• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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