0
我想一個url重定向到一個子文件夾,例如:IIS重定向到子文件夾
http://localhost/test是用戶將輸入的,但我想這重定向到http://localhost/test/public
我找不到什麼網絡上的任何資源,以及我發現的大多數資源都在Apache上,這對我無能爲力。
謝謝。
PlayKid
我想一個url重定向到一個子文件夾,例如:IIS重定向到子文件夾
http://localhost/test是用戶將輸入的,但我想這重定向到http://localhost/test/public
我找不到什麼網絡上的任何資源,以及我發現的大多數資源都在Apache上,這對我無能爲力。
謝謝。
PlayKid
在你的web.config文件中的站點的根目錄,你會把這樣的事情:
<?xml version="1.0"?>
<configuration>
<location path="test">
<system.webServer>
<httpRedirect enabled="true" destination="test/public" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>
我使用7版本,我已經安裝了URL重寫模塊,但我不知道如何配置它。 – PlayKid