Apache SSI 和 XML

发布于 2024-11-20 00:08:23 字数 350 浏览 3 评论 0原文

我试图在浏览器中查看时使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凡间太子 2024-11-27 00:08:23

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文