Quote:
Originally Posted by foong
Just to add a little to the SSI. Generally, web servers will have already enable SSI for .shtml and to enable SSI for other extension (i.e .htm .html), you will need access to .htaccess in your 'public_html' folder, enter the following code in it :-
AddType text/html .htm
AddHandler server-parsed .htm
Options Indexes FollowSymLinks Includes
Above will enable SSI for files with .htm extension.
|
Ahhh.... yes, that's what it was. Thanks foong!