[AttributeRouting.Web.Mvc.Route("faq.html")]
アクションFAQを載せました。
しかし、私が行くとき
localhost/faq.html
404 http not found エラーが発生し、localhost/routes.axd でカスタム ルートが見つかりません。
どうすればこれを修正できますか?
ありがとう !
更新:ここに私のFAQアクションがあります
[OutputCache(Duration = 120)]
[AttributeRouting.Web.Mvc.Route("faq.html")]
public virtual ActionResult FAQ(int id = 0){
//some code here
}