asp.net下实现URL重写技术的代码
程序员文章站
2023-03-15 12:22:25
url 重写是截取传入 web 请求并自动将请求重定向到其他 url 的过程。 比如浏览器发来请求...
url 重写是截取传入 web 请求并自动将请求重定向到其他 url 的过程。
比如浏览器发来请求hostname/101.aspx ,服务器自动将这个请求中定向为http://hostname/list.aspx?id=101。
url重写的优点在于:
缩短url,隐藏实际路径提高安全性
易于用户记忆和键入。
易于被搜索引擎收录
二 实现url重写的基本方法
下载ms的urlrewriter.dll,放到你的web程序的bin下
下载地址1:http://www.rickel.cn/uploads/devtools/msdnurlrewriting.msi
下载地址2:download.microsoft.com/download/0/4/6/0463611e-a3f9-490d-a08c-877a83b797cf/msdnurlrewriting.msi
下载完成后,在web.config里设置如下:
<?xml version="1.0" encoding="utf-8" ?>
<!--overred-->
<configuration>
<configsections>
<section name="rewriterconfig"type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
</configsections>
<rewriterconfig>
<rules>
<rewriterrule>
<lookfor>~/d(\d+)\.aspx</lookfor>
<sendto>~/default.aspx?id=$1</sendto>
</rewriterrule>
</rules>
</rewriterconfig>
<system.web>
<httphandlers>
<add verb="*" path="*.aspx" type="urlrewriter.rewriterfactoryhandler, urlrewriter" />
</httphandlers>
</system.web>
</configuration>
其中
<section name="rewriterconfig" type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
用于指定配置节"rewriterconfig"的处理程序类的名称为”urlrewriter.config.rewriterconfigserializersectionhandler”,该类存在于bin目录下的urlrewriter .dll文件中
关键的是这两句
<lookfor>~/d(\d+)\.aspx</lookfor>
<sendto>~/default.aspx?id=$1</sendto>
<lookfor>~/d(\d+)\.aspx</lookfor>表示,用户输入的url,d(\d+)\.aspx是 url中文件名匹配的正则表达式(此处为字母d开头,后面跟一个或多个数字,并以.aspx结尾。用户也可根据自己的需要自行设定)。
<sendto>~/default.aspx?id=$1</sendto>,表示当服务器接收到符合上面条件的请求后如何重写url。此处表示访问defalutl.aspx并传入参数id,其值$1将用用户请求的文件名中的第一个数字来表示。
例如用户输入 hostname/d11.aspx,服务器会把他重写为http://hostname/default.aspx?id=11。换句话说用户输入http: //hostname/d11.aspx,实际访问的是http://hostname/default.aspx?id=11。这样就起到了隐藏真实文件名,并便于用户记忆的作用。
处理回发
在重写后的url里如果产生回发,例如有一个按钮,又调用了该被重写的aspx,用户浏览器中将会显示该aspx文件实际的地址,也就是http: //hostname/default.aspx?id=11。但从用户的角度考虑,如 果单击按钮时突然看到 url 更改会使他们感到不安。因此必须解决这个问题。
解决方法有二:
(1)自己定义一个actionlessform类,在aspx中不再使用系统提供的form 标记
namespace actionlessform
{
public class form : system.web.ui.htmlcontrols.htmlform
{
protected override void renderattributes(htmltextwriter writer)
{
writer.writeattribute("name", this.name);
base.attributes.remove("name");
writer.writeattribute("method", this.method);
base.attributes.remove("method");
this.attributes.render(writer);
base.attributes.remove("action");
if (base.id != null)
writer.writeattribute("id", base.clientid);
}
}
}
创建此类并对其进行编译之后,要在 asp.net web 应用程序中使用它,应首先将其添加到 web 应用程序的 references 文件夹中。然后,要使用它来代替 htmlform 类,做法是在 asp.net 网页的顶部添加以下内容:
<%@ register tagprefix="skm" namespace="actionlessform" assembly="actionlessform" %>
然后,将 <form runat="server">(如果有)替换为:<skm:form id="form1" method="post" runat="server">
并将右边的 </form> 标记替换为:</skm:form>
个人并不推荐该方法
(2)第二种方法就是继承page,这样你不需要在aspx页中改任何东西。
代码:
using system;
using system.io;
using system.web;
using system.web.ui;
namespace url
{
public class olpage : page
{
public olpage()
{}
protected override void render(htmltextwriter writer)
{
if (writer is system.web.ui.html32textwriter)
{
writer = new formfixerhtml32textwriter(writer.innerwriter);
}
else
{
writer = new formfixerhtmltextwriter(writer.innerwriter);
}
base.render(writer);
}
}
internal class formfixerhtml32textwriter : system.web.ui.html32textwriter
{
private string _url; // 假的url
internal formfixerhtml32textwriter(textwriter writer):base(writer)
{
_url = httpcontext.current.request.rawurl;
}
public override void writeattribute(string name, string value, bool encode)
{
if (_url != null && string.compare(name, "action", true) == 0)
{
value = _url;
}
base.writeattribute(name, value, encode);
}
}
internal class formfixerhtmltextwriter : system.web.ui.htmltextwriter
{
private string _url;
internal formfixerhtmltextwriter(textwriter writer):base(writer)
{
_url = httpcontext.current.request.rawurl;
}
public override void writeattribute(string name, string value, bool encode)
{
if (_url != null && string.compare(name, "action", true) == 0)
{
value = _url;
}
base.writeattribute(name, value, encode);
}
}
}
把这个文件编译成dll,并在你的项目中引用它。
然后把项目中的所有aspx文件对应的cs文件中的继承page类的代码改写为继承olpage。
例如
public class webform1:page
改写为
public class webform1:url.olpage
这样就解决回发问题。
比如浏览器发来请求hostname/101.aspx ,服务器自动将这个请求中定向为http://hostname/list.aspx?id=101。
url重写的优点在于:
缩短url,隐藏实际路径提高安全性
易于用户记忆和键入。
易于被搜索引擎收录
二 实现url重写的基本方法
下载ms的urlrewriter.dll,放到你的web程序的bin下
下载地址1:http://www.rickel.cn/uploads/devtools/msdnurlrewriting.msi
下载地址2:download.microsoft.com/download/0/4/6/0463611e-a3f9-490d-a08c-877a83b797cf/msdnurlrewriting.msi
下载完成后,在web.config里设置如下:
<?xml version="1.0" encoding="utf-8" ?>
<!--overred-->
<configuration>
<configsections>
<section name="rewriterconfig"type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
</configsections>
<rewriterconfig>
<rules>
<rewriterrule>
<lookfor>~/d(\d+)\.aspx</lookfor>
<sendto>~/default.aspx?id=$1</sendto>
</rewriterrule>
</rules>
</rewriterconfig>
<system.web>
<httphandlers>
<add verb="*" path="*.aspx" type="urlrewriter.rewriterfactoryhandler, urlrewriter" />
</httphandlers>
</system.web>
</configuration>
其中
<section name="rewriterconfig" type="urlrewriter.config.rewriterconfigserializersectionhandler, urlrewriter" />
用于指定配置节"rewriterconfig"的处理程序类的名称为”urlrewriter.config.rewriterconfigserializersectionhandler”,该类存在于bin目录下的urlrewriter .dll文件中
关键的是这两句
<lookfor>~/d(\d+)\.aspx</lookfor>
<sendto>~/default.aspx?id=$1</sendto>
<lookfor>~/d(\d+)\.aspx</lookfor>表示,用户输入的url,d(\d+)\.aspx是 url中文件名匹配的正则表达式(此处为字母d开头,后面跟一个或多个数字,并以.aspx结尾。用户也可根据自己的需要自行设定)。
<sendto>~/default.aspx?id=$1</sendto>,表示当服务器接收到符合上面条件的请求后如何重写url。此处表示访问defalutl.aspx并传入参数id,其值$1将用用户请求的文件名中的第一个数字来表示。
例如用户输入 hostname/d11.aspx,服务器会把他重写为http://hostname/default.aspx?id=11。换句话说用户输入http: //hostname/d11.aspx,实际访问的是http://hostname/default.aspx?id=11。这样就起到了隐藏真实文件名,并便于用户记忆的作用。
处理回发
在重写后的url里如果产生回发,例如有一个按钮,又调用了该被重写的aspx,用户浏览器中将会显示该aspx文件实际的地址,也就是http: //hostname/default.aspx?id=11。但从用户的角度考虑,如 果单击按钮时突然看到 url 更改会使他们感到不安。因此必须解决这个问题。
解决方法有二:
(1)自己定义一个actionlessform类,在aspx中不再使用系统提供的form 标记
namespace actionlessform
{
public class form : system.web.ui.htmlcontrols.htmlform
{
protected override void renderattributes(htmltextwriter writer)
{
writer.writeattribute("name", this.name);
base.attributes.remove("name");
writer.writeattribute("method", this.method);
base.attributes.remove("method");
this.attributes.render(writer);
base.attributes.remove("action");
if (base.id != null)
writer.writeattribute("id", base.clientid);
}
}
}
创建此类并对其进行编译之后,要在 asp.net web 应用程序中使用它,应首先将其添加到 web 应用程序的 references 文件夹中。然后,要使用它来代替 htmlform 类,做法是在 asp.net 网页的顶部添加以下内容:
<%@ register tagprefix="skm" namespace="actionlessform" assembly="actionlessform" %>
然后,将 <form runat="server">(如果有)替换为:<skm:form id="form1" method="post" runat="server">
并将右边的 </form> 标记替换为:</skm:form>
个人并不推荐该方法
(2)第二种方法就是继承page,这样你不需要在aspx页中改任何东西。
代码:
using system;
using system.io;
using system.web;
using system.web.ui;
namespace url
{
public class olpage : page
{
public olpage()
{}
protected override void render(htmltextwriter writer)
{
if (writer is system.web.ui.html32textwriter)
{
writer = new formfixerhtml32textwriter(writer.innerwriter);
}
else
{
writer = new formfixerhtmltextwriter(writer.innerwriter);
}
base.render(writer);
}
}
internal class formfixerhtml32textwriter : system.web.ui.html32textwriter
{
private string _url; // 假的url
internal formfixerhtml32textwriter(textwriter writer):base(writer)
{
_url = httpcontext.current.request.rawurl;
}
public override void writeattribute(string name, string value, bool encode)
{
if (_url != null && string.compare(name, "action", true) == 0)
{
value = _url;
}
base.writeattribute(name, value, encode);
}
}
internal class formfixerhtmltextwriter : system.web.ui.htmltextwriter
{
private string _url;
internal formfixerhtmltextwriter(textwriter writer):base(writer)
{
_url = httpcontext.current.request.rawurl;
}
public override void writeattribute(string name, string value, bool encode)
{
if (_url != null && string.compare(name, "action", true) == 0)
{
value = _url;
}
base.writeattribute(name, value, encode);
}
}
}
把这个文件编译成dll,并在你的项目中引用它。
然后把项目中的所有aspx文件对应的cs文件中的继承page类的代码改写为继承olpage。
例如
public class webform1:page
改写为
public class webform1:url.olpage
这样就解决回发问题。
推荐阅读
-
asp.net下用url重写URLReWriter实现任意二级域名的方法第1/2页
-
在ASP.NET中重写URL的代码
-
asp.net下利用JS实现对后台CS代码的调用方法
-
IIS下配置页面重写(配合插件url-rewrite2去除页面后缀名)的实现方法
-
asp.net下实现URL重写技术的代码
-
asp.net下用url重写URLReWriter实现任意二级域名的方法第1/2页
-
Nginx服务器下使用rewrite重写url以实现伪静态的示例
-
在ASP.NET中重写URL的代码
-
asp.net下用url重写URLReWriter实现任意二级域名的方法第1/2页
-
IIS下配置页面重写(配合插件url-rewrite2去除页面后缀名)的实现方法