标签: asp.net vb.net redirect http-status-code-404
我的网站上有一些断开的链接,并会定期保留新的链接。我如何在web.config中编写集中代码或404然后重定向到主页? 我正在使用aspx,vb.net和IIS7
答案 0 :(得分:3)
在web.config中,您可以使用以下部分 -
<customErrors mode="On" defaultRedirect="~/errors/GeneralError.aspx"> <error statusCode="404" redirect="/" /> </customErrors>