0

我有一个 MVC 3 应用程序,我的默认路由是 app/index,这意味着如果用户点击“ http://www.something.com ”,他们会看到“ http://www.something.com/app ” / "。

但是,我想始终显示实际路线,这意味着当用户点击“ http://www.something.com ”时,我希望地址栏中的 url 显示为“ http://www.something.com”。 com/app/ ”。我怎样才能做到这一点?

4

1 回答 1

0

您可以在操作中使用重定向,如下所示:

public class HomeController : Controller
{
   public ActionResult Index(){
     return RedirectToAction("Index","App");
     // or you can do a redirect to a URL. like 301.
     return RedirectPermanent("/app");
   }

}
于 2013-09-20T20:56:16.727 回答