服务 xhtml + mathml 到 Firefox 和 IE

发布于 2024-07-27 16:49:50 字数 283 浏览 7 评论 0原文

Firefox 需要 mathml 的 xhtml 扩展名,但 IE 不会显示带有 xhtml 扩展名的页面(而是显示下载对话框)。

我已经尝试过像这样的apache内容协商:

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} .*MSIE.*
RewriteRule \.xhtml$ - [T=text/html]

但IE似乎只关心扩展名。 我已经在安装了 mod_rewrite 的本地服务器上尝试过此操作。

Firefox requires xhtml extension for mathml but IE will not display pages with xhtml extension (it displays a download dialog box instead).

I have tried apache content negotiation like so:

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} .*MSIE.*
RewriteRule \.xhtml$ - [T=text/html]

but IE seems only to care about the extension. I have tried this on my local server where mod_rewrite is installed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

嘿嘿嘿 2024-08-03 16:49:51

Internet Explorer 不支持 XHTML(营销 XHTML 除外)或MathML(无插件)。

如果您想使用 MathML — 忘记对您的页面的纯粹 IE 支持。

Internet Explorer doesn't support XHTML (except marketing XHTML) or MathML (without a plugin).

If you want to use MathML — forget about unadulterated IE support for your pages.

り繁华旳梦境 2024-08-03 16:49:50

看来这是可行的:

<ifmodule mod_rewrite.c>
RewriteEngine On

RewriteCond %{HTTP_USER_AGENT} !.*MSIE.*
RewriteRule \.html$ - [T=application/xhtml+xml]

RewriteCond %{HTTP_USER_AGENT} .*MSIE.*
RewriteRule \.html$ - [T=text/html]
</ifmodule>

如果没有互联网浏览器,我对各种事情的了解就会少得多!

It seems that this works:

<ifmodule mod_rewrite.c>
RewriteEngine On

RewriteCond %{HTTP_USER_AGENT} !.*MSIE.*
RewriteRule \.html$ - [T=application/xhtml+xml]

RewriteCond %{HTTP_USER_AGENT} .*MSIE.*
RewriteRule \.html$ - [T=text/html]
</ifmodule>

If it weren't for internet explorer, I'd know so much less about all sorts of things!

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