I am trying to configure Apache to recognize Server Side Includes in my .html files (written using xHTML Transitional).
I have confirmed the following checklist with my configuration:
1) httpd.conf file includes the line
LoadModule include_module modules/mod_include.so
2) httpd.conf file contains the directive
Options +Includes
3) httpd.conf file also includes the directive
AddType text/html .html
AddHandler server-parsed .html
4) Finally the .htacces file where the source html file with the include directive resides also contains the directive:
Options +Includes
Still, the include directive in the .html file
is not being parsed by Apache & is being passed as it is to the client.
So, can anyone tell me the solution???