当前位置:   article > 正文

iis html文件打开404,c# – 使用HttpModule处理html文件以捕获IIS7上的404错误

c# 处理 404事件

根据Alexander的答案做了一点研究,我在AspExceptionHandler中实现了IHttpHandler.

我的课现在看起来像:

public class AspExceptionHandler : IHttpModule, IHttpHandler

{

public void Dispose() { }

public void Init(HttpApplication context)

{

context.Error += new EventHandler(ErrorHandler);

}

private void ErrorHandler(object sender, EventArgs e)

{

HttpApplication application = (HttpApplication)sender;

try

{

// Gather information

Exception currentException = application.Server.GetLastError(); ;

String errorPage = "http://companywebsite.be/error.aspx";

HttpException httpException = currentException as HttpException;

if (httpException == null || httpException.GetHttpCode() != 404)

{

application.Server.Transfer(errorPage, true);

}

//The error is a 404

else

{

// Continue

application.Server.ClearError();

String shouldMail404 = true;

//Try and redirect to the proper page.

String requestedFile = application.Request.Url.AbsolutePath.Trim('/').Split('/').Last();

// Redirect if required

String redirectURL = getRedirectURL(requestedFile.Trim('/'));

if (!String.IsNullOrEmpty(redirectURL))

{

//Redirect to the proper URL

}

//If we can't redirect properly, we set the statusCode to 404.

else

{

//Report the 404

}

}

}

catch (Exception ex)

{

ExceptionCatcher.FillWebException(HttpContext.Current, ref ex);

ExceptionCatcher.CatchException(ex);

}

}

public bool IsReusable

{

get { return true; }

}

public void ProcessRequest(HttpContext context)

{

if (!File.Exists(context.Request.PhysicalPath))

{

throw new HttpException(404, String.Format("The file {0} does not exist", context.Request.PhysicalPath));

}

else

{

context.Response.TransmitFile(context.Request.PhysicalPath);

}

}

}

在ProcessRequest方法(IHttpHandler所需)中,我检查文件是否存在.

如果它不存在,我抛出一个由我的类的HttpModule部分捕获的HttpException.

我的web.config中的system.webServer节点现在看起来像这样:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/252275
推荐阅读
相关标签
  

闽ICP备14008679号