asp.net2.0子目錄不能運行應用程序-httpModules的移除問題
廣告:
問題:1.我網(wǎng)站根目錄是一個應用程序,子目錄又是另外一個應用程序,為什么運行子目錄程序要復制根目錄bin下面的dll文件到子目錄下面的bin目錄,不然的話,二級目錄程序不能運行。有沒有什么方法可以避免?
2.子目錄如何httpModules的移除問題
顯示錯誤信息:
配置錯誤
說明: 在處理向該請求提供服務所需的配置文件時出錯。請檢查下面的特定錯誤詳細信息并適當?shù)匦薷呐渲梦募?/p>
分析器錯誤消息: 未能加載文件或程序集“URLRewriter”或它的某一個依賴項。系統(tǒng)找不到指定的文件。 (E:\aspnet2.0\test\web.config line 37)
源錯誤:
行 35: <customErrors mode="Off"/>
行 36: <httpModules>
行 37: <add type="URLRewriter.ModuleRewriter, URLRewriter" name="ModuleRewriter" />
行 38: </httpModules>
行 39: <compilation debug="false" defaultLanguage="c#" />
解決方法:
1.第一種方法:不用復制dll
<!--path 不用說指定的是一個目錄
allowOverride 指是否可以將這個重寫
inheritInChildApplications 指是否被子級應用程序繼承
-->
根目錄web.config 加入以下一行
<location path="." allowOverride="true" inheritInChildApplications ="false">
<system.web>
2. 第二種方法 二級目錄web.config下面加入
<httpModules>
<!--下面一行后來添加,移除該類-->
<remove name="ModuleRewriter" />
并復制"ModuleRewriter"相關的dll文件到二級目錄bin下面.
廣告: