如何配置可以使用URL访问的网站,如http://sitename.servername.com

时间:2014-08-04 11:49:53

标签: c# asp.net iis iis-7.5 config

如何使用http://sitename.servername.com

等网址配置我的网站

目前我可以使用http://servername.com/Sitename/default.aspx访问我的网站,但我想使用。符号而不是/

我在Windows Server 2008 R2上使用ASP.NET 4.0和IIS 7.5。

感谢。

1 个答案:

答案 0 :(得分:0)

在Global.asax中使用以下代码

public class Global : System.Web.HttpApplication
{
    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        if (Request.Url.AbsolutePath.EndsWith("/"))
        {
            Server.Transfer(Request.Url.AbsolutePath + "default.aspx");
        }
    }
}