0
나는 MVC 5 라우팅을 사용하여 시나리오 아래 수행하는 방법을 알고 싶어MVC 5 선택적 매개 변수 라우팅
내 URL 구조
http://www.xx.com/search/cat/1
http://www.xx.com/search/cat/prod/1
[Route("search/{cat?}/{prod?}/{pageId:int=1}")]
public ActionResult Index(string cat, string prod, int pageId)