ASP.NET MVC 4从URL中删除“WWW”

时间:2013-09-17 12:02:38

标签: c# asp.net asp.net-mvc-4

删除“WWW”并永久重定向到同一网址的表达式是什么。你能帮我解决HttpRedirect规则吗? (C#)

ex:www.domain.com - > domain.com 例如:www.domain.com/Home - > domain.com/Home

1 个答案:

答案 0 :(得分:0)

您需要做的第一件事是了解MVC路由。这里有一个很好的教程

ASP.NET MVC Routing Overview (C#)

查看App_Start文件夹中的RouteConfig类。您将在那里注意以下代码段

routes.MapRoute( 
    "Default", // Route name
    "{controller}/{action}/{id}", // URL with parameters
    new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);

这段代码的作用是将任何与特定自定义路由不匹配的传入请求(请参阅上面的自定义路由教程)重定向(选择单词?)到HomeController中的以下默认操作方法。

public ActionResult Index()
{
    ViewBag.Message = "You have found the Home page.";

    return View();
}

如果要访问该URL,可以通过HttpContext的Request属性

进行访问
var url = HttpContext.Request.Url;

还有一个名为UrlHelper的MVC类,可用于在MVC应用程序中构建URL

UrlHelper Class

以下博客文章演示了如何使用UrlHelper构建绝对操作

How to Build Absolute Action URLs Using the UrlHelper Class

您可能想为应用程序配置虚拟目录

Virtual Directory Setup Instructions

您可以在IIS中配置重定向

HTTP Redirects

我希望这有帮助!