我已经创建了一个网站,该网站的网站页面位于https域中,但是该网站需要来自http域的一些数据,我使用ajax调用来加载http数据,但是它被阻止在混合内容中
我对如何解决此问题一无所知,我已经在网上搜索以更改web.config文件来解决此问题,但是我尝试了该web.config却没有解决
我的web.config代码
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="AddTrailingSlashRule1" stopProcessing="true">
<match url="https://www.example.com" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Redirect" url="http://ipaddress:8080/{R:1}/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>