|
|
发表于
2025-10-30 14:00:38
来自手机
|
显示全部楼层
| 阅读模式
来自 四川
本帖最后由 suyang 于 2025-10-31 09:56 编辑
文件:index.html(其实.php也可以 )
作用:类似短链接生成,不过不是跳转,而是直接在你的域名下访问网站<!DOCTYPE html>
<html>
<head>
<title>你的标题</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
*{margin:0;padding:0}
html,body{height:100%}
iframe{border:0;width:100%;height:100%}
</style>
</head>
<body>
<iframe src="你的网址" allow="camera;microphone"></iframe>
</body>
</html>
使用方法:
修改标题和网站
丢服务器即可
而且比如我放的网站是一个搜索引擎,然后搜索跳转到其他页面也是你的域名,如
https://m.baidu.com/s?from=1022282z&word=嘻嘻→你的域名
https://m.baidu.com/s?from=1022282z&word=不嘻嘻→你的域名
这是示范
如果你不想你的网站被嵌套,可以看我的帖子
嵌入对抗 |
|