URL書き換えを実現するために、以下のコードを書きました。
Global.asax で
routes.MapRoute(
"StudentDetail", // Route name
"StudentDetail", // URL with parameters
new { controller = "UDashboard", action = "UAboutMeStudentDetails",
SortField = UrlParameter.Optional }
);
ビューで
<a href="/StudentDetail?SortField='Major'" >Students</a>
リンクをクリックすると、完璧なコントローラーのアクションに移動します。
しかし、私のURLは
https://localhost/StudentDetail?SortField='Major'
そして、私はそれを望んでいません。
URLを次のようにしたいだけです
https://localhost/StudentDetail
上記の URL を実現するには、どのような変更を行う必要がありますか?