Internet Explorer 尝试下载index.jsf 文件

发布于 2024-10-20 14:23:48 字数 93 浏览 0 评论 0原文

大家好,我正在尝试让我的应用程序在 Internet Explorer 8 上运行。如果我将 IE8 重定向到我的页面,它只会尝试下载 JSF 文件。不知道这里发生了什么。

Hey guys I'm trying to get my application to run on Internet Explorer 8. If I redirect IE8 to my page it just tries to download the JSF file. Not sure what is going on here.

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

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

发布评论

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

评论(2

守望孤独 2024-10-27 14:23:48

旧版本的 Internet Explorer 不理解 mime 类型 application/xhtml+xml:

http://www.schillmania.com/content/entries/2004/10/24/application-xhtml+xml/

更改 web.xml 配置文件以映射 mime 类型:

<mime-mapping>
    <extension>xhtml</extension>
    <mime-type>text/html;charset=UTF-8</mime-type>
</mime-mapping>

Old versions of Internet Explorer don't understand mime type application/xhtml+xml:

http://www.schillmania.com/content/entries/2004/10/24/application-xhtml+xml/

Change your web.xml configuration file to map the mime type:

<mime-mapping>
    <extension>xhtml</extension>
    <mime-type>text/html;charset=UTF-8</mime-type>
</mime-mapping>
羅雙樹 2024-10-27 14:23:48

我将登录页面更改为纯 html 页面而不是 JSF(xhtml) 页面,它解决了问题。

I changed my login to page to a plain html page instead of a JSF(xhtml) page and it fixed the issue.

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