WindowsにApache 2.2をインストールしました。インクルードをオンにすると、shtml ファイルにそれぞれの html ファイルが含まれます。
私が抱えている問題は、各インクルード ファイルの上に 2 つの引用符 " " があることです。
<body>
<!--#include virtual="/includes/Header.html" -->
</body>
レンダリング
<body>
" "
html header from include
</body>
可能な解決策:
/
1)に含まれる前に削除します<!--#include virtual="/includes/Header.html" -->
2) include ディレクティブを含むファイルに.html
拡張子も付いていると仮定し、作業フォルダーを呼び出して、次のようにファイルC:/workingfolder
を設定しましたか?httpd.conf
<Directory "C:/workingfolder">
Options Indexes FollowSymLinks Includes
...
</Directory>
AddType text/html .shtml .html
AddOutputFilter INCLUDES .shtml .html