Categories


Tags


apache、iis规则屏蔽拦截蜘蛛抓取

如果是正常的搜索引擎蜘蛛访问,不建议对蜘蛛进行禁止,否则网站在百度等搜索引擎中的收录和排名将会丢失,造成客户流失等损失。

可以优先考虑升级虚拟主机型号以获得更多的流量或升级为云服务器(不限流量)。更多详情请访问: http://www.west.cn/faq/list.asp?unid=626

Linux下规则文件.htaccess(手工创建.htaccess文件到站点根目录)

<IfModule mod_rewrite.c>

RewriteEngine On

#Block spider

RewriteCond %{HTTP_USER_AGENT} "SemrushBot|Webdup|AcoonBot|AhrefsBot|Ezooms|EdisterBot|EC2LinkFinder|jikespider|Purebot|MJ12bot|WangIDSpider|WBSearchBot|Wotbox|xbfMozilla|Yottaa|YandexBot|Jorgee|SWEBot|spbot|TurnitinBot-Agent|mail.RU|curl|perl|Python|Wget|Xenu|ZmEu" [NC]

RewriteRule !(^robots\.txt$) - [F]

</IfModule>

Windows2008、2012或更高系统下规则文件web.config (手工创建web.config文件到站点根目录)

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

<system.webServer>

<rewrite>

<rules>

<rule name="Block spider">

<match url="(^robots.txt$)" ignoreCase="false" negate="true" />

<conditions>

<add input="{HTTP_USER_AGENT}" pattern="SemrushBot|Webdup|AcoonBot|AhrefsBot|Ezooms|EdisterBot|EC2LinkFinder|jikespider|Purebot|MJ12bot|WangIDSpider|WBSearchBot|Wotbox|xbfMozilla|Yottaa|YandexBot|Jorgee|SWEBot|spbot|TurnitinBot-Agent|mail.RU|curl|perl|Python|Wget|Xenu|ZmEu" ignoreCase="true" />

</conditions>

<action type="AbortRequest"/>

</rule>

</rules>

</rewrite>

</system.webServer>

</configuration>

注:“{HTTP_USER_AGENT}”所在行中是不明蜘蛛名称,根据需要添加以"|"为分割。

规则中默认屏蔽部分不明蜘蛛,要屏蔽其他蜘蛛按规则添加即可,附各大蜘蛛名字:

google蜘蛛:googlebot

百度蜘蛛:baiduspider

百度手机蜘蛛:baiduboxapp

yahoo蜘蛛:slurp

alexa蜘蛛:ia_archiver

msn蜘蛛:msnbot

bing蜘蛛:bingbot

altavista蜘蛛:scooter

lycos蜘蛛:lycos_spider_(t-rex)

alltheweb蜘蛛:fast-webcrawler

inktomi蜘蛛:slurp

有道蜘蛛:YodaoBot和OutfoxBot

热土蜘蛛:Adminrtspider

搜狗蜘蛛:sogou spider

SOSO蜘蛛:sosospider

360搜蜘蛛:360spider

apache、iis屏蔽限制ip访问(适用虚拟主机)

来源:西部数码


Public @ 2021-01-23 15:47:21

window系统安装tomcat(java环境)

以下是在Windows操作系统上安装Tomcat服务器的步骤: 1. 下载Tomcat安装程序:从Apache Tomcat官方网站下载Tomcat安装程序,下载适合您系统架构的版本。 2. 安装Java环境:Tomcat需要Java的支持,因此需要先安装Java环境。可以从Oracle官方网站下载Java JDK安装程序,并按照提示进行安装。 3. 解压Tomcat安装包:将Tomcat安

Public @ 2023-04-15 12:50:26

windows2003系统一键开启IIS的GZIP方法

: 1、安装 Internet Information Services (IIS) 管理界面: 在"控制面板"中找到"程序和功能",点击"打开或关闭 Windows 功能",选择Internet Information Services 并勾选子选项中的 Internet Information Services 选项,点击"确定安装",完成安装。 2、开启IIS: 在"控制面板"中找到"服

Public @ 2023-02-24 09:00:24

apache、iis规则屏蔽拦截蜘蛛抓取

如果是正常的搜索引擎蜘蛛访问,不建议对蜘蛛进行禁止,否则网站在百度等搜索引擎中的收录和排名将会丢失,造成客户流失等损失。可以优先考虑升级虚拟主机型号以获得更多的流量或升级为云服务器(不限流量)。更多详情请访问: http://www.west.cn/faq/list.asp?unid=626Linux下规则文件.htaccess(手工创建.htaccess文件到站点根目录)<IfModule

Public @ 2021-01-23 15:47:21

更多您感兴趣的搜索

0.506209s