如何使用http://sitename.servername.com
等网址配置我的网站目前我可以使用http://servername.com/Sitename/default.aspx访问我的网站,但我想使用。符号而不是/
我在Windows Server 2008 R2上使用ASP.NET 4.0和IIS 7.5。
感谢。
答案 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");
}
}
}