为经典ASP中的文件夹设置重定向

时间:2014-01-29 12:09:36

标签: iis asp-classic url-redirection

我有经典的asp网站,因此无法使用,因此我想将所有请求的网址重定向到新网站。但我无法访问IIS管理器,有没有办法从FTP客户端设置301重定向?

1 个答案:

答案 0 :(得分: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"
%>