Apache SSI 和 XML
我试图在浏览器中查看时使用 Apache Server Side Includes 逻辑显示或隐藏一些 xml:
<!--#config timefmt="%Y%m%d%T"-->
<!--#if expr="($DATE_LOCAL < '2011071709:20:00')"-->
<xml>...</xml>
<!--#endif -->
但是,这失败了,它将 ssi 语句视为注释(我在“查看源代码”中看到它们)。
apache 文档中的 SSI 页面声明这仅适用于 HTML,但想知道是否有人设法使其适用于 xml 页面。
I'm trying to show or hide some xml using Apache Server Side Includes logic when viewing in a browser:
<!--#config timefmt="%Y%m%d%T"-->
<!--#if expr="($DATE_LOCAL < '2011071709:20:00')"-->
<xml>...</xml>
<!--#endif -->
However, this fails, it treats the ssi statements as comments (I see them in "view source").
The SSI page in the apache documentation states this only works with HTML but wondering if anyone has managed to get this to work with xml pages.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apache 通过查看文件扩展名来决定是否解析 SSI 语句。它不适用于 .xml 文件,除非您在 http.conf 或 .htaccess 文件中配置它。
Apache looks at the file extension to decide whether to parse the SSI statements. It won't work with .xml files unless you configure it in the http.conf , or in an .htaccess file.