我正在尝试使站点 pci 兼容。
如果你访问(虚拟ip):http:someipaddress/ZNYTMHXO.ashx
然后用户正确地看到我在我的网络配置中声明的页面中的 html:
但是,如果您使用相同的 url,但在查询字符串中使用 ?aspxerrorpath=/:http:someipaddress/ZNYTMHXO.ashx?aspxerrorpath=/
然后页面显示“/”应用程序中的服务器错误。运行时错误。
这导致 pci 扫描失败。
为什么这个变量会导致问题?
抱歉,我应该声明 ZNYTMHXO.ashx 不存在。当 asperrorpath 不在查询字符串中时,404 重定向有效。
-----更新----- 只是为了帮助,这是显示页面的html,非常有限。
<!DOCTYPE html>
<html>
<head>
<title>Runtime Error</title>
<meta name="viewport" content="width=device-width" />
<style>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Consolas","Lucida Console",Monospace;font-size:11pt;margin:0;padding:0.5em;line-height:14pt}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
@media screen and (max-width: 639px) {
pre { width: 440px; overflow: auto; white-space: pre-wrap; word-wrap: break-word; }
}
@media screen and (max-width: 479px) {
pre { width: 280px; }
}
</style>
</head>
<body bgcolor="white">
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>Runtime Error</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description: </b>An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.
<br><br>
</body>
</html>