我有ASP.NET網站。403當我嘗試重定向時,公用文件夾中的禁止錯誤
我可以訪問的公共網頁,這是確定:
,但我得到403錯誤當我嘗試訪問該文件夾:
MyPublicFolder包含的index.htm。
我要不允許用戶瀏覽目錄,只能訪問文件夾中的所有頁面。
我們有以下錯誤:
403 - Forbidden: Access is denied
You do not have permission to view this directory or page using the credentials that you supplied.
<location path="/MyPublicFolder">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
我使用IIS 7.5和Windows Server 2008 R2。
有什麼建議嗎?
UPDATE:的web.config
注:V1是我公用文件夾
<location path="v1">
<system.web>
<authorization configSource="Config\system.web.authorization.allow.config" />
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="index.htm"/>
</files>
</defaultDocument>
<httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Found">
<add wildcard="*" destination="/v1/index.htm" />
</httpRedirect>
</system.webServer>
</location>
<location path="v1/index.htm">
<system.webServer>
<httpRedirect enabled="false" />
</system.webServer>
</location>
你想讓你的用戶瀏覽你的目錄嗎? –
我想*不允許用戶瀏覽目錄,只能訪問文件夾*中的所有頁面。 MyPublicFolder包含** index.htm **。 – Kiquenet