我在http://mysite.com上有 ac# web 应用程序
用户打开他的浏览器并输入http://mysite.com/anywrongpath
我想要做的是获取“确切”网址( /anywrongpath )然后将该用户重定向到即 /MainPage.aspx
我想我可以通过以下方式处理重定向:
protected void Application_Error(object sender, EventArgs e)
{
HttpException httpException = Server.GetLastError() as HttpException;
if (httpException.ErrorCode == 404)
Response.Redirect("/MainPage.aspx");
}
但是,我不知道如何处理键入的 url 的检索过程。我对“Sessions”、“Request.ServerVariables”、“Request.Url”等进行了研究,但我无法解决问题。
我对如何解决它持开放态度,如果你提供微小的代码示例,我真的很高兴,thanx
穆拉特