使用查询字符串重定向IIS中的URL

时间:2016-10-24 17:39:13

标签: c# iis query-string url-redirection

我想将现有网址重定向到新网址例如:

输入网址为:

www.mysite.com/show/fir/file/xyz.pdf

outupt URL应为:

www.mysite.com/show.aspx?URL=show/fir/file/xyz.pdf

1 个答案:

答案 0 :(得分:0)

这称为Url重写,Asp.Net中的预处理逻辑由Http Handler(基于扩展)和Http Modules(基于方法)实现。

您应该参考Url RewritingHttp Handler and Http Modules