判断如果是搜索引擎,跳转到域名2
如果是正常输入域名,跳转到域名1 //这一步一般是不需要的,不需要的话把代码最后一行去掉就行。
<script language=”javascript”>
var regexp=/\.(baidu|soso|sogou|google|youdao|yahoo|bing)(\.[a-z0-9\-]+){1,2}\//ig;
var where =document.referrer;
if(regexp.test(where))
{
window.location.href=”http://www.搜索引擎跳转的域名2.com/”
}
else window.location.href=”http://www.直接输入跳转的域名1.com/”
</script>
Posted in有趣的网络