0

如何在 c# .net 或 asp.net 4.0 中基于注册客户端重定向 url。例如,如果客户注册为“client1”并且我们的网站是 www.mycompany.com,那么客户收益的每个页面都应该是 www.client1.mycompany.com。

更详细的例子:

例如,创建的另一个客户端是 Client2。我通常创建的页面就像

 "www.mycompany.com/product.aspx" 
 "www.mycompany.com/categories.aspx" should be shown as
 "www.client2.mycompany.com/product.aspx" and
 "www.client2.mycompany.com/categories.aspx"

分别我在网上搜索并找到静态页面或在应用程序启动期间使用 Gloabal.asax 但在用户登录后没有找到任何东西。

4

3 回答 3

2

有几种方法可以做到这一点。ub1k 以一种方式陈述。

我认为最简单的方法是使用 global.aspx.cs (如果你没有 global.aspx 然后添加它)然后

protected void Application_BeginRequest(object sender, EventArgs e)
{
    var currentPath = Request.Path.ToLower(); //get the request
    var myContext = HttpContext.Current;
    if (currentPath == "/addUser" || currentPath == "/newuser") //decide what to do with the request
        myContext.RewritePath("/login.ashx?path="+ currentPath);
     else  //default value
        myContext.RewritePath("/default.aspx");
}

简单,清晰且非常强大...

于 2013-02-27T09:27:39.083 回答
1

如果您希望基于客户端登录进行重定向 - 这是一个内部应用程序(不能由 IIS 处理 - 就像 IIS Url Rewriter 一样),那么您可能应该创建一个HttpModule.

所以你应该做的是:

  • 创建一个模块->实现的类IHttpModule
  • 在这个模块中实现你的重定向逻辑
  • 将其插入 web.config 部分:<configuration><system.web><httpModules>如:

    <add name="MyModule" type="MyModule.Module, MyModule" />

所有可以在以下位置找到:http: //support.microsoft.com/kb/307996

请注意,您必须将您的逻辑与已完成身份验证的事件挂钩after。我也相信要阅读用户信息,您还应该实现您的模块IRequiresSessionState

于 2013-02-27T08:45:41.280 回答
-1
    //DLL: Intelligencia.UrlRewriter.dll    

    //web.config
    <configuration>

      <configSections>
        <section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter"/>
      </configSections>
    </configuration>

    <system.web>
        <httpModules>
          <add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter"/>
        </httpModules>
    </system.web>


    <rewriter>
        <rewrite url="~/(.+)/CompanyHomePage" to="~/Home.aspx"/>
    </rewriter>


    //C#:

     string strTitle = Session["company_name"].ToString();
     strTitle = strTitle.Trim('-');
     strTitle = strTitle.ToLower();
     char[] chars = @"$%#@!*?;:~`+=()[]{}|\'<>,/^&"".".ToCharArray();
     strTitle = strTitle.Replace("c#", "C-Sharp");
     strTitle = strTitle.Replace("vb.net", "VB-Net");
     strTitle = strTitle.Replace("asp.net", "Asp-Net");
     strTitle = strTitle.Replace(".", "-");

    for (int i = 0; i < chars.Length; i++)
    {
        string strChar = chars.GetValue(i).ToString();
        if (strTitle.Contains(strChar))
        {
           strTitle = strTitle.Replace(strChar, string.Empty);
        }
    }
     strTitle = strTitle.Replace(" ", "-");
     strTitle = strTitle.Replace("--", "-");
     strTitle = strTitle.Replace("---", "-");
     strTitle = strTitle.Replace("----", "-");
     strTitle = strTitle.Replace("-----", "-");
     strTitle = strTitle.Replace("----", "-");
     strTitle = strTitle.Replace("---", "-");
     strTitle = strTitle.Replace("--", "-");
     strTitle = strTitle.Trim();
     strTitle = strTitle.Trim('-');

     Response.Redirect("~/" + strTitle + "/CompanyHomePage", false);//Redirect to ~/Home.aspx page


//reference: CompanyHomePage same in web.config  <rewrite url="~/(.+)/CompanyHomePage" to="~/Home.aspx"/> which company is log in to sight that company name show in url like this http://abcd//CompanyHomePage
于 2013-05-16T12:08:31.350 回答