gpt4 book ai didi

c# - 是否可以根据 ASP.NET/IIS 中的用户代理进行条件 URL 重写?

转载 作者:太空狗 更新时间:2023-10-29 21:02:47 24 4
gpt4 key购买 nike

我工作的网站托管的内容不断被抓取并发布到其他地方。

是否可以重写 URL,以便普通用户和白名单爬虫可以查看网站,但阻止无法识别的浏览器访问?

最佳答案

是的,您可以使用 URL 重写模块 来做到这一点(我使用的是 v2 .. 但它也应该适用于 v1.x,尽管我没有 v1.x 可以测试) :

<system.webServer>
<rewrite>
<rules>
<rule name="UserAgentRedirect" stopProcessing="true">
<match url="^(.*)$" />
<conditions>
<add input="{HTTP_USER_AGENT}" pattern="(iphone|ipod)" />
</conditions>
<action type="Rewrite" url="/special-page.aspx" />
</rule>
</rules>
</rewrite>
</system.webServer>

根据上述规则,所有来自 iPhone 或 iPad(或任何其他在用户代理字符串中包含 iphoneipod 的浏览器/应用程序)的请求都将被重写(内部重定向) ) 到 /special-page.aspx

关于c# - 是否可以根据 ASP.NET/IIS 中的用户代理进行条件 URL 重写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6689436/

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