如何重定向URL

时间:2018-04-26 12:29:15

标签: .htaccess web-config url-redirection

如何重定向网址 来自

www.example.com/file.html

www.example.com/folder/file.html

使用.htaccessweb.config

我一直在搜索几个小时并找到了几个主题,但没有一个适合我们

1 个答案:

答案 0 :(得分:0)

对于IIS:

在旧页面所在的目录中打开web.config。然后在web.config中为旧位置路径和新目标添加代码,如下所示:

<configuration>
  <location path="file.html">
    <system.webServer>
      <httpRedirect enabled="true" destination="www.example.com/folder/file.html" httpResponseStatus="Permanent" />
    </system.webServer>
  </location>  
</configuration>

对于apache:

.htaccess中添加以下行:

Redirect /file.html http://example.com/folder/file.html