gpt4 book ai didi

ssl - https URL Rewrite 重写到域根,不保留 url 结构

转载 作者:太空宇宙 更新时间:2023-11-03 14:59:23 26 4
gpt4 key购买 nike

我正在尝试将 http 上的任何 url 重写为 https 等价物。

我的规则重写为 https,但它默认返回域根目录,并且不保留 url 结构。

http://www.domain.com/dir1 -> 重写为 -> https://www.domain.com , 而不是 https://www.domain.com/dir1

<rewrite>
<rules>
<rule name="Redirect to https" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
</rules>
</rewrite>

最佳答案

这似乎可以完成工作...

<rewrite>
<rules>


<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions trackAllCaptures="false">
<add input="{HTTPS}" pattern="off" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" appendQueryString="false" />
</rule>

</rules>
</rewrite>

关于ssl - https URL Rewrite 重写到域根,不保留 url 结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24652319/

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