4月52021
批量二级域名对应重定向跳转
有的时候会更换域名,但是旗下有很多分站,二级域名;
比如:
www.a.com 要重定向到 www.b.com
qrpay.a.com 到 qrpay.b.com
一个一个解析跳转不太实际。这里给大家提供两个方法。
php版本
<?php
$url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$url = str_replace('a.com', 'b.com', $url);
header('location:'.$url,true,301);
?>
html版本
<!DOCTYPE html>
<html>
<head>
<title>泛解析二级域名批量跳转</title>
</head>
<body>
<script type="text/javascript">
var url = 'http://www.a.com/1.html';
url = url.replace(/a+\.com/g,'b.com');
window.location.href = url;
</script>
</body>
</html>
发表评论
木有头像就木JJ啦!还木有头像吗?点这里申请属于你的个性Gravatar头像吧!