0

WindowsにApache 2.2をインストールしました。インクルードをオンにすると、shtml ファイルにそれぞれの html ファイルが含まれます。

私が抱えている問題は、各インクルード ファイルの上に 2 つの引用符 " " があることです。

<body>
<!--#include virtual="/includes/Header.html" -->
</body>

レンダリング

<body>
" " 
html header from include
</body>
4

1 に答える 1

0

可能な解決策:

/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
于 2012-07-18T06:00:20.380 に答える