2011-07-08 86 views

回答

0

在你的web.config文件中的站點的根目錄,你會把這樣的事情:

<?xml version="1.0"?> 
<configuration> 
    <location path="test"> 
     <system.webServer> 
      <httpRedirect enabled="true" destination="test/public" httpResponseStatus="Permanent" /> 
     </system.webServer> 
    </location> 
</configuration> 
相關問題