gpt4 book ai didi

redirect - iis web.config 将某些域/路径重定向到新域/samepath

转载 作者:行者123 更新时间:2023-12-03 09:09:22 25 4
gpt4 key购买 nike

我需要使用 web.config 设置将某个路径/文件夹重定向到使用相同原始路径/文件夹的新域。

例如:如果检测到 www.domain1.com/path2match1/* 则重定向到:www.newdomain.com/path2match1/*(与domain1上匹配的路径相同)

例如:当前:www.domain1.com/path2match1/someFileOrFolders/somefile.html重定向到:www.newdomain.com/path2match1/someFileOrFolders/somefile.html

任何帮助将不胜感激

谢谢

最佳答案

我自己找到了问题的答案! (为我欢呼!哈哈)

无论如何,以下是如何完成我的要求:

<rewrite>
<rules>
<rule name="NAME" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAny">
<add input="{HTTP_HOST}{REQUEST_URI}" pattern="(.*)/FOLDER/(.*)" />
</conditions>
<action type="Redirect" appendQueryString="false" url="http://DESTINATION-URL.TLD/FOLDERS/{C:2}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>

小心!添加多个标签集或将此代码放置在错误的位置将导致网站生成内部服务器错误,从而使访问者无法访问该网站,直到删除附加标签为止。

关于redirect - iis web.config 将某些域/路径重定向到新域/samepath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44165331/

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