如何在Internet Explorer和Firefox中禁用CORS请求的预检

时间:2018-10-21 13:57:27

标签: javascript google-chrome internet-explorer firefox cors

我想在IE和firefox上测试一些CORS请求。我可以使用以下命令在chrome中对其进行测试:

chrome.exe --disable-web-security --user-data-dir =〜/ .chrome-disable-web-security

此命令将打开一个新的chrome窗口,该窗口基本上不会对CORS请求进行OPTIONS(预检)调用。

在IE和Firefox中是否可以绕开或以某种方式像Chrome一样关闭预检?

1 个答案:

答案 0 :(得分:0)

要在Windows的IE和Edge浏览器中禁用相同的来源策略或允许跨来源资源共享,请执行以下步骤:

  1. 打开Internet Explorer浏览器。转到:工具-> Internet选项->安全。
  2. 选择“ Internet”安全区域,然后单击“自定义级别”
  3. 在该处查找“其他”设置,然后启用“跨域访问数据源”,如下面的屏幕截图所示。

enter image description here

更多详细信息,请参阅以下文章:

How to Disable Same Origin Policy on Chrome and IE browser