gpt4 book ai didi

asp.net - 将查询字符串传递到 IIS 中的自定义错误页面

转载 作者:行者123 更新时间:2023-12-02 10:26:28 25 4
gpt4 key购买 nike

我想将所有错误重定向到一个错误页面,因此在 web.config 文件中,我插入了:

<httpErrors errorMode="Custom" existingResponse="Auto" defaultPath="/error.html" defaultResponseMode="Redirect">

它工作正常,但我想添加更多选项。这就是我想要的样子:

假设该网站的网址是:www.examplesite.com

我希望观众像这样更改网址:

www.examplesite.com/aaaaaaa

它将被重定向到:

www.examplesite.com/error.html?path=aaaaaaa

我不知道如何实现这个。

提前致谢。

最佳答案

类似的事情应该做

<httpErrors errorMode="Custom" existingResponse="Replace">
<remove statusCode="404"/>
...
<error statusCode="404" responseMode="ExecuteURL" path="Path to your error page"/>
...
</httpErrors>

如果您想了解 customErrorshttpErrors 之间的区别,您可以引用此 answer

关于asp.net - 将查询字符串传递到 IIS 中的自定义错误页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29817881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com