MartinP: SSI lauffähig machen

Beitrag lesen

Ist es machbar, dass du deine httpd.conf-Datei einmal online stellst, oder den Inhalt hier !ohne Kommentarzeilen! postest?

Auschnitt aus der httpd.conf Datei:
#######################################################
...

"C:/Programme/Apache Group/Apache2/cgi-bin" should be changed to whatever your ScriptAliased

CGI directory exists, if you have that configured.

<Directory "C:/Programme/Apache Group/Apache2/cgi-bin">
    AllowOverride None
    Options Includes ExecCGI
    Order allow,deny
    Allow from all
</Directory>
...

To parse .shtml files for server-side includes (SSI):

(You will also need to add "Includes" to the "Options" directive.)

AddType text/x-server-parsed-html .shtml
AddOutputFilter INCLUDES .shtml
...

#######################################################

so sieht das aus. Was muß ich vielleicht noch editieren ???

Gruß MartinP