时间:2021-07-01 10:21:17 帮助过:39人阅读
HttpApplication app = (HttpApplication)sender;
HttpContext context = app.Context;
string url = context.Request.Url.AbsoluteUri; //完整url
string turl = url.Split('.')[0];
string surl = turl.ToLower().Replace("http://", "");
StringBuilder strb = new StringBuilder();
strb.Append(url);
strb.Append(surl);
app.Context.RewritePath(path, string.Empty, strb.ToString().Split('?')[1]);
在web.config里配置下:
<system.web>里添加如下代码。
<httpModules>
<add type="Common.URLRewriter" name="Common" />
最后设置IIS的时候记得要把IIS的表头设置为空。
运行下你就能实现了
</httpModules>