3

我正在使用 Windows 上 WAMP 中的服务器端包含。我的 html 文件正在使用 SSI 文件包含执行,但它在输出中显示空白。

如何删除由

<!--include file="header.html" --> 

标签。这会产生空白,这会破坏我的页面设计。

请帮忙。谢谢

4

2 回答 2

3

所以我最终找到了一个适合我的解决方案:

UTF8 在我的网站上增加了一行

将所有文件保存为不带 BOM 的 UTF-8 ( http://en.wikipedia.org/wiki/Byte_order_mark )。

于 2011-05-29T22:44:49.750 回答
0

尝试删除指令中的所有空格。

IE,

<!--#include virtual="xxx.shtml"--><header>title</header>
<p>lorem ipsum, bacon, and stuffs...</p>
<footer>copyright</footer><!--#include virtual="xxx.shtml"-->
于 2011-05-01T04:02:31.607 回答