首页  ·  知识 ·  云计算
使用UrlRewritingNet重写url以.html的伪静态页面后,真实的.html
网友    综合  编辑:dezai   图片来源:网络

1、在web.config中添加以下项目。

<compilation>
<buildProviders>
<add extension=".html" type="System.Web.Compilation.PageBuildProvider"/>
</buildProviders>
</compilation>

<httpHandlers>
<add verb="*" path="*.html" type="System.Web.UI.PageHandlerFactory"/>
</httpHandlers>

2、重写处理方法

Namespace web

{

public class eastClass : IHttpHandler

{

public bool IsReusable

{

get { return true; }

}

public void ProcessRequest(HttpContext context)

{

Uri url = context.Request.Url;

string filepath = context.Request.Url.AbsolutePath;

filepath = context.Server.MapPath("//") + filepath.Replace("/", "//");

if (File.Exists(filepath) == false)

{

if (url.ToString().IndexOf("要处理的url中的关键字") > -1)

{

string uname = url.Segments[url.Segments.Length - 1];//取出带后缀文件名称

string id = uname.Substring(0, uname.IndexOf("."));//真实的文件名

if (id != "")

context.Response.Redirect("/xxx.aspx?id=" + id, true);//跳转

}

else

{

filepath = context.Server.MapPath("//") + "404.htm";

string tempstr;

using (StreamReader sr = new StreamReader(filepath, Encoding.Default))

{

tempstr = sr.ReadToEnd();

}

context.Response.Write(tempstr);

context.Response.End();

}

}

else

{

string tempstr;

using (StreamReader sr = new StreamReader(filepath, Encoding.UTF8))

{

tempstr = sr.ReadToEnd();

}

context.Response.Write(tempstr);

context.Response.End();

}

}

}

}

本文作者:网友 来源:网络
CIO之家 www.ciozj.com 微信公众号:imciow
   
免责声明:本站转载此文章旨在分享信息,不代表对其内容的完全认同。文章来源已尽可能注明,若涉及版权问题,请及时与我们联系,我们将积极配合处理。同时,我们无法对文章内容的真实性、准确性及完整性进行完全保证,对于因文章内容而产生的任何后果,本账号不承担法律责任。转载仅出于传播目的,读者应自行对内容进行核实与判断。请谨慎参考文章信息,一切责任由读者自行承担。
延伸阅读