블랙햇 SEO 방법에는 모두가 사용하는 트릭이 있습니다. 서버는 클라이언트 브라우저의 사용자 에이전트를 결정한 다음 추가 작업을 수행합니다.
인터넷에서 항상 이 코드를 사용하는 사람들이 있습니다. 먼저 웹사이트 방문자가 어디에서 왔는지 확인하는 것은 js 코드입니다. 이 코드는 오랫동안 인터넷에서 발견되었습니다. 원본 작성자에게 감사드립니다
<script language="javascript"> var pattern = /google/gi; var pattern1= /yahoo/gi; var keyValue=escape(document.referrer); if (pattern.exec(keyValue)) setTimeout( "windows.location='http://www.jb51.net'",10*1000); else if(pattern1.exec(keyValue)) setTimeout( "window.location='http://www.jb51.net'",10*1000); </script>
검색 엔진의 사용자 에이전트인 경우 301에 의해 리디렉션됩니다. 현재 인터넷의 많은 사람들이 이 방법을 사용하여 친근한 링크를 속이고 있습니다(코드는 끝에 배치됩니다)
더 구체적인 아이디어, 점프, Qiao 페이지 등이 많습니다. 오늘은 PHP 코드만 공개하겠습니다
설명: 코드는 모두 Baidu에서 가져온 것입니다. 먼저 간단한 코드를 작성해 보겠습니다.
PHP의 $_SERVER['HTTP_USER_AGENT']
<?php $tmp = $_SERVER['HTTP_USER_AGENT']; if(strpos($tmp, 'Googlebot') !== false){ echo '谷歌'; } else if(strpos($tmp, 'Baiduspider') >0){ echo '百度'; } else if(strpos($tmp, 'Yahoo! Slurp') !== false){ echo '雅虎'; } else if(strpos($tmp, 'msnbot') !== false){ echo 'Msn'; } else if(strpos($tmp, 'Sosospider') !== false){ echo '搜搜'; } else if(strpos($tmp, 'YodaoBot') !== false || strpos($tmp, 'OutfoxBot') !== false){ echo '有道'; } else if(strpos($tmp, 'Sogou web spider') !== false || strpos($tmp, 'Sogou Orion spider') !== false){ echo '搜狗'; } else if(strpos($tmp, 'fast-webcrawler') !== false){ echo 'Alltheweb'; } else if(strpos($tmp, 'Gaisbot') !== false){ echo 'Gais'; } else if(strpos($tmp, 'ia_archiver') !== false){ echo 'Alexa'; } else if(strpos($tmp, 'altavista') !== false){ echo 'AltaVista'; } else if(strpos($tmp, 'lycos_spider') !== false){ echo 'Lycos'; } else if(strpos($tmp, 'Inktomi slurp') !== false){ echo 'Inktomi'; } ?>
점프가 포함된 두 번째 단락
<?php $flag = false; $tmp = $_SERVER['HTTP_USER_AGENT']; if(strpos($tmp, 'Googlebot') !== false){ $flag = true; } else if(strpos($tmp, 'Baiduspider') >0){ $flag = true; } else if(strpos($tmp, 'Yahoo! Slurp') !== false){ $flag = true; } else if(strpos($tmp, 'msnbot') !== false){ $flag = true; } else if(strpos($tmp, 'Sosospider') !== false){ $flag = true; } else if(strpos($tmp, 'YodaoBot') !== false || strpos($tmp, 'OutfoxBot') !== false){ $flag = true; } else if(strpos($tmp, 'Sogou web spider') !== false || strpos($tmp, 'Sogou Orion spider') !== false){ $flag = true; } else if(strpos($tmp, 'fast-webcrawler') !== false){ $flag = true; } else if(strpos($tmp, 'Gaisbot') !== false){ $flag = true; } else if(strpos($tmp, 'ia_archiver') !== false){ $flag = true; } else if(strpos($tmp, 'altavista') !== false){ $flag = true; } else if(strpos($tmp, 'lycos_spider') !== false){ $flag = true; } else if(strpos($tmp, 'Inktomi slurp') !== false){ $flag = true; } if($flag == false){ header("Location: http://www.jb51.net" . $_SERVER['REQUEST_URI']); // 自动转到http://www.jb51.net 对应的网页 // $_SERVER['REQUEST_URI'] 为域名后面的路径 // 或 换成 header("Location: http://www.jb51.net/abc/d.php"); exit(); } ?>
세 번째 코드는 판단 후 301 점프입니다
if (preg_match(“#(google|slurp@inktomi|yahoo! slurp|msnbot)#si”, $_SERVER['HTTP_USER_AGENT'])) { header(“HTTP/1.1 301 Moved Permanently”); header(“Location: http://www.saoyu.com/”); exit; }}
검은 모자 방법은 위험하므로 주의해서 사용하시기 바랍니다. 속은 친구들이 백도어를 찾고 있다는 느낌이 든다면.