惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

K
Kaspersky official blog
Martin Fowler
Martin Fowler
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
V
Visual Studio Blog
博客园_首页
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
雷峰网
雷峰网
D
Docker
博客园 - 司徒正美
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
U
Unit 42
J
Java Code Geeks
A
About on SuperTechFans
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
Security Affairs
I
Intezer
Cisco Talos Blog
Cisco Talos Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
B
Blog RSS Feed
P
Privacy & Cybersecurity Law Blog
T
Tenable Blog
T
Threatpost
H
Hacker News: Front Page
G
Google Developers Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
L
Lohrmann on Cybersecurity
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
A
Arctic Wolf
S
Secure Thoughts
GbyAI
GbyAI
NISL@THU
NISL@THU
S
Security @ Cisco Blogs
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Webroot Blog
Webroot Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
O
OpenAI News
Spread Privacy
Spread Privacy
Application and Cybersecurity Blog
Application and Cybersecurity Blog

龙辉's Blog - 敲代码

对学某通的登录逆向分析 - 龙辉's Blog 蓝桥杯省赛Web题解及知识点复习 - 龙辉's Blog 怎么突破图片防盗链? - 龙辉's Blog win10系统下可以上网但是提示没有网络的问题 - 龙辉's Blog Bilibili自动签到之使用教程 - 龙辉's Blog PHP采集工具之Querylist - 龙辉's Blog AirBook-自响应式引导页 - 龙辉's Blog 查询别人qq空间访客记录! - 龙辉's Blog
qq内打开被拦截链接 - 龙辉's Blog
博主: Tinker-站长 · 2018-10-09 · via 龙辉's Blog - 敲代码
  • 发布时间:
  • 14984 次浏览
  • 6 条评论
  • 722字数
  • 分类: 敲代码
  1. 首页
  2. 正文  
  3. 分享到:

我之前也发过一篇这样的文章,因为博客换了一个程序,所以也就。。(你懂得)

现在有很多防红链接生成,我没去了解。我说说自己的思路吧。

利用html的iframe标签,在一个未红的网页引入一个一个已红的页面,打开没红的链接展示的是已红网站的内容。这就是我的思路。

这样就得需要我们有多个域名了~这在被腾讯误报拦截时还是有些用的,要是在qq内打开不了,我想也没有几个人想复制链接去浏览器打开吧

引入iframe之后,再添加css,实现全屏展示,那就ok了。(注意:如果设置了禁止在外部链接打开那就用不了了哦)

接下来是贴代码时间

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <!--屏幕自适应-->
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes" />
    <title>网站标题</title>
<style type="text/css">
html,body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}
iframe {   
    margin: 0;   
    border-style: none;    
    width: 100%;  
    height: 100%;
}
</style>
</head>
<body>
<iframe src="http://网站链接"></iframe>
</body>
</html>

使用方法:新建html文件,把该替换的替换了,上传到目录即可。
更多的功能我就不写了,比如自动获取网站title,php+mysql又是一套程序。
这东西很吃域名哦。

此作品为本博原创!! 如需转载请注明来源!谢谢


版权属于:龙辉博客

本文链接:https://blog.eirds.cn/123.html

如果没有特别声明则为本博原创。转载时须注明出处及本声明!

赞赏作者

如果觉得我的文章对你有用,请随意赞赏

qq内打开被拦截链接