经常去逛别人的网站时候,有留意的话也是会发现这个东西的,个人觉得,在用户体验方面来说还是很不错的。

不过具体的我本站也没加上去,可能迟点会加上吧。

大概样子看下面图片吧..注意链接和标题还有页面内容:

ZblogPhp外链跳转美化版(理论其他PHP程序也可以用) 实用技巧 ZBlog 第1张

不多废话,下面来正题:

1、新建一个goto.php文件,放在根目录,内容为:

<?php
$url = $_GET['url'];
?>
<html>
<head>
<meta charset="utf-8" />
<meta name="robots" content="nofollow" />
<meta http-equiv="refresh" content="1.8;url=<?php echo $url; ?>" />
<title>正在为您跳转……</title>
<style>
body{background:#000}.loading{-webkit-animation:fadein 2s;-moz-animation:fadein 2s;-o-animation:fadein 2s;animation:fadein 2s}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes fadein{from{opacity:0}to{opacity:1}}.spinner-wrapper{position:absolute;top:0;left:0;z-index:300;height:100%;min-width:100%;min-height:100%;background:rgba(255,255,255,0.93)}.spinner-text{position:absolute;top:41.5%;left:47%;margin:16px 0 0 35px;color:#BBB;letter-spacing:1px;font-weight:700;font-size:9px;font-family:Arial}.spinner{position:absolute;top:40%;left:45%;display:block;margin:0;width:1px;height:1px;border:25px solid rgba(100,100,100,0.2);-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;border-left-color:transparent;border-right-color:transparent;-webkit-animation:spin 1.5s infinite;-moz-animation:spin 1.5s infinite;animation:spin 1.5s infinite}@-webkit-keyframes spin{0%,100%{-webkit-transform:rotate(0deg) scale(1)}50%{-webkit-transform:rotate(720deg) scale(0.6)}}@-moz-keyframes spin{0%,100%{-moz-transform:rotate(0deg) scale(1)}50%{-moz-transform:rotate(720deg) scale(0.6)}}@-o-keyframes spin{0%,100%{-o-transform:rotate(0deg) scale(1)}50%{-o-transform:rotate(720deg) scale(0.6)}}@keyframes spin{0%,100%{transform:rotate(0deg) scale(1)}50%{transform:rotate(720deg) scale(0.6)}}
</style>
</head>
<body>
<div class="loading">
  <div class="spinner-wrapper">
    <span class="spinner-text">使劲加载中...</span>
    <span class="spinner"></span>
  </div>
</div>
</body>
</html>

2、打开你的主题下template文件夹里面的comment.php文件,

找到:{$comment.Author.HomePage}

修改为:{$host}goto.php?url={$comment.Author.HomePage}

3、保存后在后台首页更新一下缓存即可。

4、完成。。。

5、说明:这里所做的只是评论区访客留下来的网址,其他地方自己照样子去操作即可。

6、对于图片的说明:做出来后,效果应该是:你的域名/goto.php?url=其他网址,和我演示图片不一样是因为我用了鸟儿的SEO工具...

喜欢的自己去操作吧..有什么不懂的可以在下面留言...

The End...