zoukankan      html  css  js  c++  java
  • 利用UrlRewriter 实现二级域名

    首先我们得修改UrlRewriter,怎么修改请参见江大鱼的BLog。

      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目录下。

      修改完了这后,我们再把此 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]*).ddvip.com/</LookFor>
              <SendTo>~/Search/Search_Sell.aspx?id=$1</SendTo>
           </RewriterRule>

      好了,现在你输入 http://1.178b2b.com/ 就能搜索出相应分类了。但是聪明的你马上就发现。晕死,首页进不去了。呵呵。当然喽。你还得为首页加入重写正则。

           <RewriterRule>
              <LookFor>http://www.ddvip.com/</LookFor>
              <SendTo>~/index.htm</SendTo>
           </RewriterRule>

      大功告成。感觉爽死了吧。呵呵。莫急,如果你二级域名指向的目录下面的页面都用的相对地址连接的图片和其它页面的话,呵呵,你有得忙了,你要全部改成如下方式:

      <a href=http://www.ddvip.com/cxlm/league.html target="_blank">豆豆网</a>

      以上就是用UrlRewriter实现二级域名的方法了。希望各位一切顺利。

  • 相关阅读:
    C语言文法
    实验一
    词法分析
    py中文词频统计
    py字符串练习
    py画了个国旗
    熟悉常用的Linux操作
    大数据概述
    实验三、 递归下降分析程序实验
    简易c语言LL(1)文法
  • 原文地址:https://www.cnblogs.com/chenbg2001/p/1380522.html
Copyright © 2011-2022 走看看