我有可以部署的应用程序,但默认错误正在运行。
例如,如果名称为action
的请求为
http://localhost:44359/Home/Indexxxx
服务器响应是
http://localhost:44359/Home/Error?message=<error description>
但现在服务器响应是
ERR_TOO_MANY_REDIRECTS
但我认为我没有改变任何东西,我可以在哪里设置这种行为?
当它处理localhost
时,它无法在服务器上运行,因为服务器应用程序被放入folder
类似
http://IISURL/AppNameFolder/Home/Error?message=<error description>
但server response error url
仍然是
http://IISURL/Home/Error?message=<error description>
没有AppNameFolder
名称且该地址不存在。其他一切都很好。
我可以管理这种行为吗?