apache2 & ssi
For the record apache2 sucks
I am trying to parse SSI in HTM files but it is not working. Can someone help me out?
Here is the config files:
---------------
<VirtualHost xxx.xxx.xxx.xxx:80>
DocumentRoot /home/vox/xxx.com/
ServerName xxx.com
Alias /xxx/ "/home/vox/xxx/"
Alias /cgi/ "/home/vox/xxx/"
<Directory "/home/vox/xxx.com/">
AllowOverride All
</Directory>
</VirtualHost>
--------------
.htaccess file in the home/vox/xxx.com/ directory:
--------------
ErrorDocument 404 http://www.xxx.com/
AddType text/x-server-parsed-html .html .htm
Options +Includes
XBitHack On
-------------
/home/vox/xxx/ directory .htaccess file:
AddType application/x-httpd-cgi .cgi .pl
Options +Includes +ExecCGI
XBitHack On
Why will not parse SSI in the .htm files?