2006/09/06

Enable SSI

Enable SSI (Server Side Includes) by edit httpd.conf.

1. Add folowing code:

<Location />
AddType text/html .shtml
AddHandler server-parsed .shtml
Options Indexes FollowSymLinks Includes
</Location/>


2. restart Apache:

apachectl graceful

1 comment:

  1. Edit below content instead!
    <Directory />
    Options FollowSymLinks +ExecCGI +Includes
    AllowOverride None
    </Directory>

    ReplyDelete