我已经在 Windows 上安装了 Apache 2.2。我打开了 Includes 并且我的 shtml 文件包含了它们各自的 html 文件。
我遇到的问题是每个包含文件上方都有两个引号“”。
<body>
<!--#include virtual="/includes/Header.html" -->
</body>
渲染
<body>
" "
html header from include
</body>
可能的解决方案:
1)删除/
之前包含在<!--#include virtual="/includes/Header.html" -->
2)假设包含包含指令的文件也有.html
扩展名,并调用您的工作文件夹C:/workingfolder
,您是否将httpd.conf
文件设置如下?
<Directory "C:/workingfolder">
Options Indexes FollowSymLinks Includes
...
</Directory>
AddType text/html .shtml .html
AddOutputFilter INCLUDES .shtml .html