私の現在のエラー処理 URL はかなり醜く見えます:
http://localhost:65089/Error/NotFound?aspxerrorpath=/Foo
むしろ次のようなものがあります:
http://localhost:65089/Error/NotFound
ウェブ構成コード
<system.web>
<customErrors mode="On" defaultRedirect="~/Error/Unknown">
<error statusCode="404" redirect="~/Error/NotFound" />
</customErrors>
エラーコントローラー
public class ErrorController : Controller
{
//
// GET: /Error/
public ActionResult Unknown()
{
return View();
}
public ActionResult NotFound()
{
return View();
}
}
前もって感謝します!