How do I enable SSI?

Enabling SSI (Server Side Includes) isn't complicated. However, there a few things that you need to have to make SSI work. They are fairly obvious, but we're going to outline them.

    * For SSI you need to ensure that you have the correct tags in your source code, below is an example of a SSI tag:

          <!--#include file="included.html" -->

    * Then you will need to enter in the following into your .htaccess, to enable SSI on the server:

          Options +Includes
          AddType text/html .shtml
          AddHandler server-parsed .shtml

The above should get your SSI working on your hosting account.

  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

How do I modify the inbox size within cPanel?

When you successfully create mail account in cPanel, the default quota will be assigned to the...

How do I block an IP address using cPanel?

If you want to prevent an IP address or a whole range of IP addresses from accessing your site,...

After suspension, my databases are not working

If you are getting the following message; "Error establishing a database connection", this is a...

Does my hosting account have a file count (inode) limit?

All hosting accounts / providers have some sort of file count limit. The file count limit to...

How do I obtain Raw Access Logs?

Raw Access Logs are logs that are going to give you the most information about your sites...