ssi文件上面的引文

时间:2012-07-17 20:43:50

标签: apache include ssi

我在Windows上安装了Apache 2.2。我已打开包含,我的shtml文件包含各自的html文件。

我遇到的问题是每个包含文件都是两个引号“”。

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

呈现

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

1 个答案:

答案 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