在IE上使用ajax调用时遇到403错误

发布于 2024-12-28 03:20:25 字数 371 浏览 0 评论 0原文

我的网站使用 ajax 加载页面。除了 IE 之外,所有浏览器都可以正确加载页面,IE 会在 ajax 请求上抛出错误 403。然而,即使在 IE 中,它在 localhost 中也能正常工作。 (以前它可以正常工作,不确定什么时候开始这样)。

您可以访问我的网站 http://ptamzz.com。单击任何文章都会对内容进行 ajax 调用。

在此处输入图像描述

如何修复它?由于它收到 HTTP 403 响应,因此不会返回任何数据,因此我无法显示我的页面。

I've my website loading pages using ajax. The pages are loaded properly in all the browsers except IE which throws an error 403 on the ajax request. However, it works fine in localhost even in IE. (Earlier it use to work properly, not sure when it began to act like that).

You can please check my site at http://ptamzz.com. Clicking on any article will make an ajax call for the content.

enter image description here

How do I fix it? Since it receives a HTTP 403 response, no data are returned so I'm unable to display my pages.

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

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

发布评论

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

评论(1

站稳脚跟 2025-01-04 03:20:25

将其放入 HTML 标头中:

<meta http-equiv="X-UA-Compatible" content="IE=9"></meta>

如果没有该行,IE < 9 兼容模式将在 Linux Apache 服务器上运行,许多功能将无法在 IE 中正常工作(即使它们与 Windows 本地主机或不同浏览器中的应用程序一起工作)。

Put this into your HTML header:

<meta http-equiv="X-UA-Compatible" content="IE=9"></meta>

Without the line, IE < 9 compatibility mode will be running on Linux Apache server and many functions will not work correctly in IE (even if they work with application on Windows localhost, or in different browser.

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