我在Windows上安装了Apache 2.2。我已打开包含,我的shtml文件包含各自的html文件。
我遇到的问题是每个包含文件都是两个引号“”。
<body>
<!--#include virtual="/includes/Header.html" -->
</body>
呈现
<body>
" "
html header from include
</body>
答案 0 :(得分: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