I am trying to enable SSI to use it in my site. The first thing that i am want to do is just enable it and do an echo to verified if it work at all.
I have apache2, in the root directory there is SSI folder and inside that folder i made a .htaccess file that look like this:
Options +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
So now its supposed to enable SSI. (right?)
in the SSI folder there is echo_ssi.shtml file, contain:
<!--#echo var="DATE_GMT" -->
when i am open echo_ssi.shtml in the browser, nothing happen. I suppose to get time and date in GMT...
What im doing wrong in the SSI enable configuration? There is somthing else that im need to do / add?