2

服务器更改后,我收到消息“无法加载 xml”。这可能是 crossdomain.xml 问题吗?

以下错误消息更详细。

应用程序中的服务器错误

Internet Information Services 7.5 错误摘要 HTTP 错误 404.8 - 未找到 请求过滤模块被配置为拒绝 URL 中包含 hiddenSegment 部分的路径。详细错误信息 ModuleRequestFilteringModule NotificationBeginRequest HandlerStaticFile Error Code0x00000000 请求的URLhttp://www.travelpro.com:80/controlpanel/bin/assets/main_navigation.xml 物理路径D:\home\travelpro.com\wwwroot\controlpanel\bin\assets\main_navigation。 xml 登录方法尚未确定登录用户尚未确定最可能的原因:

Request filtering is configured for the Web server and it contains a hiddenSegments section that allows the server administrator to deny

访问特定目录。

你可以尝试的事情:

Verify configuration/system.webServer/security/requestFiltering/hiddenSegments

applicationhost.config 或 web.config 文件中的设置。

链接和更多信息 这是一项安全功能。除非完全了解更改的范围,否则请勿更改此功能。如果应该从被此设置拒绝的特定目录提供内容,请从 configuration/system.webServer/security/requestFiltering/hiddenSegments 中删除被拒绝的目录。

这是我的 crossdomain.xml 文件:

  <?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*" secure="false"/>
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
</cross-domain-policy>
4

0 回答 0