用于 asp.net MVC4 的 URL 重写代码;我在代码中使用到 App_Start/RouteConfig.cs。
routes.MapRoute(
name: "subjectSefLink",
url: "{controller}/{seo}/{page}",
defaults: new
{
controller = "subject",
action = "Index",
seo = UrlParameter.Optional,
page = UrlParameter.Optional
});
我使用控制器;
public class SubjectController : Controller
{
public ActionResult Index(string seo, int page)
{
return View();
}
}
但不起作用;代码的输出= 404 not found