URL重写的问题

a64991875 2009-11-09 05:36:39
我实现IHttpModule进行URL重写

public class UrlReWriter:IHttpModule
{
public UrlReWriter(){}
public void Dispose()
{
throw new NotImplementedException();
}

public void Init(HttpApplication context)
{
context.BeginRequest += new EventHandler(context_BeginRequest);
context.Error += new EventHandler(context_Error);
}


void context_Error(object sender, EventArgs e)
{
HttpApplication application = (HttpApplication)sender;
HttpContext context = application.Context;
context.Response.Write("<html>");
context.Response.Write("<head><title>出错了!</title></head>");
context.Response.Write("<body style=\"font-size:14px;\">");
context.Response.Write("出错了:<br />");
context.Response.Write("<textarea name=\"errormessage\" style=\"width:80%; height:200px; word-break:break-all\">");
context.Response.Write(HttpUtility.HtmlEncode(context.Server.GetLastError().ToString()));
context.Response.Write("</textarea>");
context.Response.Write("</body></html>");
context.Response.End();
}


void context_BeginRequest(object sender, EventArgs e)
{
HttpApplication application = (HttpApplication)sender;
HttpContext context = application.Context;
HttpResponse response = context.Response;
string path = context.Request.Path;
string file = System.IO.Path.GetFileName(path);

string oldfile = Regex.Replace(file, @"\d+", "");

Regex[] regexs = new Regex[]
{
new Regex("djyx(\\d+).aspx", RegexOptions.Compiled),
new Regex("wlyx(\\d+).aspx", RegexOptions.Compiled),
new Regex("glmj(\\d+).aspx", RegexOptions.Compiled),
new Regex("yxzx(\\d+).aspx", RegexOptions.Compiled),
new Regex("yxpc(\\d+).aspx", RegexOptions.Compiled),
new Regex("CreativeFun(\\d+).aspx", RegexOptions.Compiled),
new Regex("News(\\d+).aspx", RegexOptions.Compiled)
};

foreach (Regex rex in regexs)
{
Match match = rex.Match(file);

if (match.Success)
{
string userId = match.Groups[1].Value;
string rewritePath = oldfile+ "?index=" + userId;
context.RewritePath(rewritePath);

break;
}
}
}

}




效果是实现了 但是我在HttpApplication application = (HttpApplication)sender;打了个断点 居然跟循环一样 执行完方法了 还定位到了HttpApplication application = (HttpApplication)sender;这个地方继续重复执行 大概又重复了20来次才算好 为什么为什么 。。。。这样影响效率
...全文
47 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
nosuchtracter 2009-11-09
  • 打赏
  • 举报
回复
每次请求都会执行的
HttpContext.Current.RewritePath(rewritePath);
这样看看

62,254

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术交流专区
javascript云原生 企业社区
社区管理员
  • ASP.NET
  • .Net开发者社区
  • R小R
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

.NET 社区是一个围绕开源 .NET 的开放、热情、创新、包容的技术社区。社区致力于为广大 .NET 爱好者提供一个良好的知识共享、协同互助的 .NET 技术交流环境。我们尊重不同意见,支持健康理性的辩论和互动,反对歧视和攻击。

希望和大家一起共同营造一个活跃、友好的社区氛围。

试试用AI创作助手写篇文章吧