ASP.NET中实现二级或多级域名(修改UrlRewrite)

来源:互联网 发布:梵高先生 知乎 编辑:程序博客网 时间:2024/05/13 17:13
家应该知道,微软的URLRewrite能够对URL进行重写,但是也只能对域名之后的部分进行重写,而不能对域名进行重写,如:可将 http://www.abc.com/1234/ 重写为 http://www.abc.com/show.aspx?id=1234 但不能将
http://1234.abc.com 重写为 http://www.abc.com/show.aspx?id=1234

要实现这个功能,前提条件就是 www.abc.com 是泛解析的,再就是要修改一下URLRewriter了。
总共要修改2个文件

1.BaseModuleRewriter.cs

protected virtual void BaseModuleRewriter_AuthorizeRequest(object sender, EventArgs e)
        
{
             HttpApplication app
=
(HttpApplication) sender;
             Rewrite(app.Request.Path, app);
         }

改为

protected virtual void BaseModuleRewriter_AuthorizeRequest(object sender, EventArgs e)
        
{
             HttpApplication app
=
(HttpApplication) sender;
             Rewrite(app.Request.Url.AbsoluteUri, app);
         }


就是将 app.Request.Path 替换成了 app.Request.Url.AbsoluteUri

2.ModuleRewriter.cs

for(int i = 0; i < rules.Count; i++)
            
{
                
// get the pattern to look for, and Resolve the Url (convert ~ into the appropriate directory)

                string lookFor = "^" + RewriterUtils.ResolveUrl(app.Context.Request.ApplicationPath, rules[i].LookFor) + "$"
;

                
// Create a regex (note that IgnoreCase is set)

                 Regex re = new
Regex(lookFor, RegexOptions.IgnoreCase);

                
// See if a match is found

                if
(re.IsMatch(requestedPath))
                
{
                    
// match found - do any replacement needed

                    string sendToUrl =
RewriterUtils.ResolveUrl(app.Context.Request.ApplicationPath, re.Replace(requestedPath, rules[i].SendTo));

                    
// log rewriting information to the Trace object

                     app.Context.Trace.Write("ModuleRewriter", "Rewriting URL to " +
sendToUrl);

                    
// Rewrite the URL

                     RewriterUtils.RewriteUrl(app.Context, sendToUrl);
                    
break;        // exit the for loop

                 }

             }

改为

for(int i = 0; i < rules.Count; i++)
            
{
                
// get the pattern to look for, and Resolve the Url (convert ~ into the appropriate directory)

                string lookFor = "^" + rules[i].LookFor + "$"
;

                
// Create a regex (note that IgnoreCase is set)

                 Regex re = new
Regex(lookFor, RegexOptions.IgnoreCase);

                
// See if a match is found

                if
(re.IsMatch(requestedPath))
                
{
                    
// match found - do any replacement needed

                    string sendToUrl =
RewriterUtils.ResolveUrl(app.Context.Request.ApplicationPath, re.Replace(requestedPath, rules[i].SendTo));

                    
// log rewriting information to the Trace object

                     app.Context.Trace.Write("ModuleRewriter", "Rewriting URL to " +
sendToUrl);

                    
// Rewrite the URL

                     RewriterUtils.RewriteUrl(app.Context, sendToUrl);
                    
break;        // exit the for loop

                 }

             }



string lookFor = "^" + RewriterUtils.ResolveUrl(app.Context.Request.ApplicationPath, rules[i].LookFor) + "$";

改成了

string lookFor = "^" + rules[i].LookFor + "$";


完成这2处改动之后重新编译项目,将生成的dll复制到bin目录下。

再就是写web.config里的重写正则了

<RewriterRule>
            
<LookFor>http://(/d+)/.abc/.com</LookFor>
            
<SendTo>/show.aspx?id=$1</SendTo>
        
</RewriterRule>


好了大功告成,你在IE地址栏输入http://1234.abc.com,就可以看到http://www.abc.com/show.aspx?id=1234

的结果了

完成这2处改动之后重新编译项目,将生成的dll复制到bin目录下。

修改完了这后,我们再把此 UrlRewriter.dll COPY 到我们项目的Bin目录下。这样就结了么?没有。
首先请确定你的项目之前有按我上篇文章中写到的那样做过UrlRewriter的配置,否则请先回过头来看看那篇文章。

如果你的项目已配置过,那么,我们还要为此做以下几件事情:

1。请确定你的域名是支持泛解析的。然后你的网站为默认网站,否则将不能实现(至少我现在还没有找到好办法)
2。在IIS配置:在IIS/你的站点/属性/主目录/配置/映谢 在通配符应用程序配置处插入一个新的映谢。把可执行文件设为和上面ASPX页面同样的配置即可(注意不要勾选 “确定文件是否存在”)。(用处就是使所有请求通过 asp.net 的ISAPI来处理,只有这样才能对所有地址进行重写嘛。)
3。查看下你的网站主机头,里面的第一个主机头值必须为空,否则会出现错误的请求。后面就随你加了,看你想绑定多少域名了。(这个办法是江大鱼想出来的。为这个错误我们都想了好多办法。在这里感谢江大鱼。。。)
4。最后改写你的 web.config 文件。
把上节中说到的
   <httpHandlers>
     <add verb="*" path="*.aspx" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
     <add verb="*" path="*.html" type="URLRewriter.RewriterFactoryHandler, URLRewriter" />
   </httpHandlers>
改为:
   <httpModules>
    <add type="URLRewriter.ModuleRewriter, URLRewriter" name="ModuleRewriter" />
   </httpModules>
(就是改用HTTP 模块来执行重写,而不用HTTP 程序,否则无法重写地址前面。)
然后就来修改我们的重写正则了:
              <RewriterRule>
                   <LookFor>http://(.[0-9]*)/.178b2b/.com/</LookFor>
                   <SendTo>~/Search/Search_Sell.aspx?id=$1</SendTo>
              </RewriterRule>
好了,现在你输入 http://1.178b2b.com/ 就能搜索出相应分类了。但是聪明的你马上就发现。晕死,首页进不去了。呵呵。当然喽。你还得为首页加入重写正则。
              <RewriterRule>
                   <LookFor>http://www/.178b2b/.com/</LookFor>
                   <SendTo>~/index.htm</SendTo>
              </RewriterRule>

大功告成。感觉爽死了吧。呵呵。莫急,如果你二级域名指向的目录下面的页面都用的相对地址连接的图片和其它页面的话,呵呵,你有得忙了,你要全部改成如下方式:
<a href=http://www.178b2b.com/cxlm/league.html target="_blank">诚信联盟</a>

以上就是用UrlRewriter实现二级域名的方法了。