我需要在一個.NET 4.X MVC應用程式底下在包一個2.0的網站應用程式
像下圖這樣

那我需要怎麼處理呢?
我參考了OverStack這篇的解決方式
在外層的Web.config裡面的system.web的標簽,多加一個標簽把它包起來就可以了
<location path="." inheritInChildApplications="false">
<system.web>
...
</system.web>
</location>
就像這樣特此紀錄一下
<location path="." inheritInChildApplications="false">
<system.web>
...
</system.web>
</location>
就像這樣