2014-01-29 71 views

回答

1

嘗試保存這爲的web.config,並將其放置在根目錄:

<?xml version="1.0" encoding="utf-8"?> 
<configuration> 
<location> 
    <system.webServer> 
     <httpRedirect enabled="true" destination="http://www.newsite.com/" httpResponseStatus="Permanent" /> 
    </system.webServer> 
    </location> 
</configuration> 

如果你不能管理IIS中的網站,但可以改變文件全部更換與

<% 
Response.Status = "301 Redirect" 
Response.AddHeader "Location", "http://new.com/foo" 
%> 
+0

感謝您的回覆。其實對於我使用相同的東西重定向永久文件。我只是想知道,如果有任何方式就像我只寫一條規則(如php中的.htaccess),並在不使用IIS管理器的情況下重定向特定文件夾中的所有文件? –

+0

上面更新了答案 –