如何重定向网址 来自
www.example.com/file.html
到
www.example.com/folder/file.html
使用.htaccess
和web.config
我一直在搜索几个小时并找到了几个主题,但没有一个适合我们
答案 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