gpt4 book ai didi

asp.net - 在 asp.net 上重定向网站

转载 作者:可可西里 更新时间:2023-11-01 12:53:52 27 4
gpt4 key购买 nike

我有一个由一些 .asp 文件和大量静态 .html 组成的网站

我想重定向所有

www.example.old/abc.html

www.example.old/xyz.html

www.example.new/abc.html

www.exaple.new/xyz.html

如果我在 Apache 上,我会使用 .htaccess,但我怎么能在 ASP、ASP.NET 服务器上这样做呢? (我无权访问 IIS 管理器)

.NET 固件:3.5操作系统:Windows 2003IIS:6.0

最佳答案

在您的 web.config 文件中试试这个:

<rule name="Redirect Rule" stopProcessing="true"> 
<match url=".*/(.*)" />
<action type="Redirect" url="www.example.new/{R:1}" redirectType="Permanent" />
</rule>

关于asp.net - 在 asp.net 上重定向网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3229076/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com