服务 xhtml + mathml 到 Firefox 和 IE
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
看来这是可行的:
如果没有互联网浏览器,我对各种事情的了解就会少得多!
It seems that this works:
If it weren't for internet explorer, I'd know so much less about all sorts of things!