1
你好我試圖保護ELMAH只從一個MVC區域內訪問名爲admin:/管理/地區如何保護ELMAH在MVC面積
我已經添加了以下的路線配置的頂部,這樣他們先出現:
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("admin/elmah.axd/{*pathInfo}");
,並在web.config中雙方的System.Web和system.webServer下有以下幾點:
<handlers>
...
<add verb="POST,GET,HEAD" path="/admin/elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
</handlers>
但我不斷收到:
The controller for path '/admin/elmah.axd' could not be found.
似乎路線不被忽略?