Submitted by 海东青 on 2026, July 13, 2:44 AM
Tags: 手机
免费资源 | 评论:0
| Trackbacks:0
| 阅读:457
Submitted by 海东青 on 2026, July 12, 10:11 AM
mailbox
mailbox
mailbox电子邮件服务是在1999年开发的。免费账号200m邮箱,使用有一些限制,网页版有广告。可以切换成简体中文。邮箱形如:freeaday@mailbox.hu
mailbox注册
邮箱地址:https://mailbox.hu/
注册地址:https://mailbox.hu/register/#registration
mailbox邮箱注册简单,只需填写简单资料,无需手机号和信用卡。如果填写了辅助邮箱则需要验证一下链接。在免费服务计划中,广告可能会出现在用户的电子邮件界面中。
mailbox免费邮箱
mailbox免费邮箱
网页是匈牙利语,看不懂可以找在线翻译的浏览器来翻译一下。登录之后可以在设置里改成简体中文。
mailbox更改语言的位置
mailbox更改语言的位置
注册之后需要在24小时内登录一次以激活账号,之后每月需要登录一次保持账号活跃。
收发邮件
您可以在一分钟内以 2-3 封电子邮件,不要一次发送数百封信。免费服务包中可以发送的信件数量为每天5封。如果您发现自己无法从您的帐户发送邮件或接收邮件,可以更改密码之后来恢复。
通过客户端收发邮件
仅限付费用户使用。
IMAP
imap.mailbox.hu
Port: 143
STARTTLS
POP3
pop3.mailbox.hu
Port: 995
STARTTLS
SMTP
smtp.mailbox.hu
Port: 587
STARTTLS
免费账号无法使用客户端收发,只能登录网页版使用。
帮助:https://mailbox.hu/help
Tags: 匈牙利, 邮箱
免费资源 | 评论:0
| Trackbacks:0
| 阅读:395
Submitted by 海东青 on 2026, July 12, 10:09 AM
原唱: 凌丰。
词:凌丰。
曲:蔡东升
歌词:
我把我的梦想卖了三两三
我把我的梦想卖了三两三
换来了灶台上的一日三餐
熬一锅时间嚼一口从前
我忽然想念自己曾经发光的少年
我爬上了屋顶给月亮递根烟
和你谈谈我是如何熬过的这些年
曾胸怀天下曾情长诗短
也曾想要带着她 万水千山。
Leileileileilei
人生路漫漫
世道多艰难
感情就像按揭款
早晚都得还。
酌酒三两三
不敢笑流年
不敬岁月不敬天
敬我的心酸。
……
敬我的心酸。
Tags: 三两
音乐无限 | 评论:0
| Trackbacks:0
| 阅读:373
Submitted by 海东青 on 2026, July 8, 8:14 AM
目前已收集Wordpress、Wordpress二级目录、PHPCMS、ECSHOP、ShopEX、SaBlog、Discuz、Discuz X、PHPWind、Typecho、DEDECMS:
WordPress:
location / {
index index.html index.php;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
WordPress在二级目录:
location /wp {
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite ^/wp/(.*)$ /wp/index.php;
}
}
里面的wp改成你的二级目录名称
PHPCMS:
location / {
rewrite ^/caipu-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last;
rewrite ^/content-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last;
rewrite ^/list-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=lists&catid=$1&page=$2 last;
rewrite ^/tag-([^\.]*)-([0-9]+)-([0-9]+).html /index.php?m=content&c=tag&catid=$2&tag=$1&page=$3 last;
rewrite ^/comment-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=comment&c=index&a=init&commentid=content_$1-$2-$3 last;
rewrite ^/([^\.]*).html /index.php?m=member&c=index&a=$1 last;
}
ECSHOP:
if (!-e $request_filename)
{
rewrite "^/index\.html" /index.php last;
rewrite "^/category$" /index.php last;
rewrite "^/feed-c([0-9]+)\.xml$" /feed.php?cat=$1 last;
rewrite "^/feed-b([0-9]+)\.xml$" /feed.php?brand=$1 last;
rewrite "^/feed\.xml$" /feed.php last;
rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)(.*)\.html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*)\.html$" /category.php?id=$1&brand=$2&page=$3 last;
rewrite "^/category-([0-9]+)-b([0-9]+)(.*)\.html$" /category.php?id=$1&brand=$2 last;
rewrite "^/category-([0-9]+)(.*)\.html$" /category.php?id=$1 last;
rewrite "^/goods-([0-9]+)(.*)\.html" /goods.php?id=$1 last;
rewrite "^/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /article_cat.php?id=$1&page=$2&sort=$3&order=$4 last;
rewrite "^/article_cat-([0-9]+)-([0-9]+)(.*)\.html$" /article_cat.php?id=$1&page=$2 last;
rewrite "^/article_cat-([0-9]+)(.*)\.html$" /article_cat.php?id=$1 last;
rewrite "^/article-([0-9]+)(.*)\.html$" /article.php?id=$1 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html" /brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*)\.html" /brand.php?id=$1&cat=$2&page=$3 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)(.*)\.html" /brand.php?id=$1&cat=$2 last;
rewrite "^/brand-([0-9]+)(.*)\.html" /brand.php?id=$1 last;
rewrite "^/tag-(.*)\.html" /search.php?keywords=$1 last;
rewrite "^/snatch-([0-9]+)\.html$" /snatch.php?id=$1 last;
rewrite "^/group_buy-([0-9]+)\.html$" /group_buy.php?act=view&id=$1 last;
rewrite "^/auction-([0-9]+)\.html$" /auction.php?act=view&id=$1 last;
rewrite "^/exchange-id([0-9]+)(.*)\.html$" /exchange.php?id=$1&act=view last;
rewrite "^/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /exchange.php?cat_id=$1&integral_min=$2&integral_max=$3&page=$4&sort=$5&order=$6 last;
rewrite ^/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$" /exchange.php?cat_id=$1&page=$2&sort=$3&order=$4 last;
rewrite "^/exchange-([0-9]+)-([0-9]+)(.*)\.html$" /exchange.php?cat_id=$1&page=$2 last;
rewrite "^/exchange-([0-9]+)(.*)\.html$" /exchange.php?cat_id=$1 last;
}
SHOPEX:
location / {
if (!-e $request_filename) {
rewrite ^/(.+\.(html|xml|json|htm|php|jsp|asp|shtml))$ /index.php?$1 last;
}
}
SaBlog 2.0:
# 只带月份的归档
rewrite "^/date/([0-9]{6})/?([0-9]+)?/?$" /index.php?action=article&setdate=$1&page=$2 last;
# 无分类翻页
rewrite ^/page/([0-9]+)?/?$ /index.php?action=article&page=$1 last;
# 分类
rewrite ^/category/([0-9]+)/?([0-9]+)?/?$ /index.php?action=article&cid=$1&page=$2 last;
rewrite ^/category/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&curl=$1&page=$2 last;
# 归档、高级搜索
rewrite ^/(archives|search|article|links)/?$ /index.php?action=$1 last;
# 全部评论、标签列表、引用列表 带分页
rewrite ^/(comments|tagslist|trackbacks|article)/?([0-9]+)?/?$ /index.php?action=$1&page=$2 last;
# tags
rewrite ^/tag/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&item=$1&page=$2 last;
# 文章
rewrite ^/archives/([0-9]+)/?([0-9]+)?/?$ /index.php?action=show&id=$1&page=$2 last;
# RSS rewrite ^/rss/([0-9]+)?/?$ /rss.php?cid=$1 last;
rewrite ^/rss/([^/]+)/?$ /rss.php?url=$1 last;
# 用户 rewrite ^/uid/([0-9]+)/?([0-9]+)?/?$ /index.php?action=article&uid=$1&page=$2 last;
rewrite ^/user/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&user=$1&page=$2 last;
# 地图文件
rewrite sitemap.xml sitemap.php last;
# 自定义链接
rewrite ^(.*)/([0-9a-zA-Z\-\_]+)/?([0-9]+)?/?$ $1/index.php?action=show&alias=$2&page=$3 last;
Discuz 7:
rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page\%3D$3&page=$2 last;
rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;
Discuz X:
location / {
rewrite ^([^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^\.]*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^\.]*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ^([^\.]*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
rewrite ^([^\.]*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3 last;
rewrite ^([^\.]*)/([a-z]+)-(.+)\.html$ $1/$2.php?rewrite=$3 last;
if (!-e $request_filename) {
return 404;
}
}
Typecho:
location / {
index index.html index.php;
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
PHPWind:
location / {
rewrite ^(.*)-htm-(.*)$ $1.php?$2 last;
rewrite ^(.*)/simple/([a-z0-9\_]+\.html)$ $1/simple/index.php?$2 last;
}
DEDECMS:
location / {
rewrite "^/index.html$" /index.php last;
rewrite "^/list-([0-9]+)\.html$" /plus/list.php?tid=$1 last;
rewrite "^/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$" /plus/list.php?tid=$1&totalresult=$2&PageNo=$3 last;
rewrite "^/view-([0-9]+)-1\.html$" /plus/view.php?arcID=$1 last;
rewrite "^/view-([0-9]+)-([0-9]+)\.html$" /plus/view.php?aid=$1&pageno=$2 last;
rewrite "^/tags.html$" /tags.php last;
rewrite "^/tag-([0-9]+)-([0-9]+)\.html$" /tags.php?/$1/$2/ last;
break;
}
免费资源 | 评论:0
| Trackbacks:0
| 阅读:412
Submitted by 海东青 on 2026, July 6, 5:38 PM
每账号免费 50 设备 + 50 用户,专为 AI 智能体打通安全通道
当地时间 4 月 14 日,Cloudflare 宣布推出私有组网服务 Cloudflare Mesh,将 AI 智能体、人与多云端基础设施统一整合到一个安全网络内,为企业组织构建、部署和治理新一代 AI 应用提供网络基座。
Cloudflare 联合创始人兼 CEO 马修 · 普林斯表示:“AI 智能体已是现代开发工作流中的标配,但它们正被一个专为人类设计的网络模型拖累。多年来,开发者只有两个选择:要么花好几天折腾复杂笨重的 敏感词XXX,要么冒着危险把私有基础设施暴露在公网上。Cloudflare Mesh 则消除了这种取舍 —— 无论智能体运行在 Cloudflare 上、私有数据中心里还是其他公有云中,我们都能为智能体和基础设施之间提供安全桥梁,确保团队部署的每个智能体从一开始就是安全的。”
Cloudflare 强调,Mesh 与很多人在用的 Cloudflare Tunnel 截然不同 —— 后者是单向将流量敏感词XX到特定服务,而 Mesh 提供的是多对多的全网互通,网络中任意节点均可通过私有 IP 直接相互访问。所有流量经由 Cloudflare 全球 330 多个城市的边缘网络路由,敏感数据全程加密且对外部威胁不可见。
在安全管控层面,Mesh 运行于 Cloudflare One 平台,现有的 Gateway 策略规则无需额外配置即可自动适用于所有 Mesh 流量。每账号免费提供 50 个节点和 50 个用户,所有 Cloudflare 账户均可使用。
另外,Mesh 还为 AI 智能体引入了身份层。在 Mesh 环境中,每个智能体都像人类员工一样拥有独立身份,安全团队可以编写精细的策略 —— 例如允许某个编码智能体或沙箱读取预发布数据库,但严格阻止其访问生产环境中的财务记录。典型应用场景包括:在手机上安全访问家中设备的本地服务而不暴露公网端口;让笔记本上的 AI 编码工具直接查询云端 VPC 中的预发布数据库;以及在 Cloudflare Workers 上部署的智能体通过 Workers VPC 绑定访问内部 API。
Cloudflare 还同步宣布与 Wiz(现为 Google Cloud 旗下)建立合作伙伴关系,提供跨企业环境的统一 AI 安全与可视化方案,帮助企业在多云和本地系统之间运行智能体工作负载时,不再需要拼接多个 敏感词XXX、身份和安全管理工具。
后续规划包括主机名路由(按服务名而非 IP 地址访问)、Mesh DNS(节点加入后自动获得内部域名)、身份感知路由(支持按智能体而非按用户制定访问策略)以及 Docker 容器支持。
Tags: cloudflare
网络安全 | 评论:0
| Trackbacks:0
| 阅读:428
Submitted by 海东青 on 2026, July 6, 4:46 PM
在一线城市生活,对于单身的青年,压力确实不少。首先面对的就是固定的工资和日益见长的租房费用和消费费用的问题。在一线城市生活的压力不仅体现在物质上,还有孤独对精神的磨损。
单身的独居生活需要自己一个人负担自己的房租,如果是非单身的情况,可以两个人一起分担,这样在经济压力方面,要比一个人负担轻松些。
对于单身青年来讲,经济的贫乏还不是最痛苦的,最折磨人的还有精神的孤独。日常上班回到家后,面对着只有空荡荡的房间和孤独的自己。没有人可以聊天说话,面对生活烦恼,工作事情时,要么自己一个人消化,要么就需要和自己的父母朋友进行线上倾诉,没有人陪伴的孤独就这样消耗着自己的精神。
单身青年的一天就像一部默片一样,说的话几乎屈指可数。在一线大城市打拼,低头苦干成为了标志,看着马路上的人色匆匆,都是着急的赶赴另一个地方,没有多余的废话,这个城市也没有自己倾诉情感的地方。
而非单身的人,虽然生活中也会有很大的压力,但两个人都可以互相扶持,在情感上会让人更有归属感,总比一个人面对要容易些。
其实,不论是单身还是非单身,在一线城市打拼都不是件容易的事。即使是非单身,如果要考虑在城市扎根,双方也要承担很大的压力。
在传统的观念中,结婚要有车有房,这对非单身的青年们压力确实很大。只不过,相对于单身青年,他们有的是一起规划未来、一起奋斗前行的人。
漂泊在大城市的单身青年,在的生活和精神的双重压力之下,他们更容易承受不住,因为他们更孤独,在情感上会更脆弱。
在一本书上看到:曾经我认为,孤独就是自己与自己的对话。现在我认为,孤独就是自己都忘记了与自己对话。曾经我认为,孤独就是世界上只剩自己一个人。现在我认为,孤独是自己居然能成为一个世界。
Tags: 青年.孤独
心情天空 | 评论:0
| Trackbacks:0
| 阅读:399
Submitted by 海东青 on 2026, July 6, 4:42 PM
ZABC.NET提供免费的二级域名服务,支持多种记录类型设置,包括A、AAAA、CNAME、MX、TXT和NS等。通过邀请链接注册,新手可获得10积分奖励,填写简单信息可额外获得20积分。用户可以用积分兑换不同长度的域名,六位及以上域名免费。此外,还享有强大的DNS管理功能和Cloudflare企业级保护管理面板。

邀请链接:
https://zabc.net/register?invite=d3e0bf0dcb75444896b5f534ecbe13b0
通过邀请链接注册,可以获得:10积分新手奖励,再简单填写信息可得20积分,就可以用30积分换一个4位域名,五位域名20积分,6位域名10积分,七位或以上的免费。
通过邀请链接注册,你可以获得:
✨ 10积分新手奖励
免费资源 | 评论:0
| Trackbacks:0
| 阅读:403
Submitted by 海东青 on 2026, July 6, 4:42 PM
DNSHE是一个非营利性的域名分发平台,由DNSHE团队驱动。我们的愿景是降低互联网内容的创作门槛。
DnShe.com 为新老用户开放免费域名注册服务!无论您想搭建个人博客、还是测试新项目,现在都可以 零成本拥有自己的域名。
域名后缀.de5.net/.us.ci/.cc.cd,均支持添加CloudFlare绑定管理。

官方网站: https://www.dnshe.com/ (网站右下角切换中英文)
申请步骤
- 登录 DnShe 客户中心
- 点击「域名服务」 → 选择「免费域名」
- 进入页面免费注册,几秒钟即可生效
额度管理
注册即享5个免费额度;邀请好友解锁,你和好友可分别获得一个额度,最多可以再增加5个额度。
欢迎填写我的邀请码
Tags: 域名
免费资源 | 评论:0
| Trackbacks:0
| 阅读:412
Submitted by 海东青 on 2026, July 5, 9:21 AM
今天又是白嫖的一天,而且可以同时白嫖最多3台服务器主机,就问你香不香~
好了废话不多说,介绍我们今天的主角是——InfinityFree。
InfinityFree是什么
InfinityFree是一个提供免费虚拟主机服务的平台,它永久免费、无广告网站托管服务,也不需要绑定信用卡、不存在隐形费用,注册即可使用,并且一个账号可以免费创建三台主机。
InfinityFree特点
- 永久免费
- 无广告植入
- 提供5G超大免费空间
- 无限制带宽和流量服务(有个每日最大点击量为5000的限制)
- 支持自定义域名
- 提供Mysql数据库
- 提供免费SSL证书
- 提供免费DNS服务
- 提供免费FTP服务
- 支持PHP站点
- 提供丰富的图形化操作管理功能
- ......
InfinityFree免费主机获取
注册&登录
我们可以直接访问InfinityFree的官网进行注册登录,官网地址:
www.infinityfree.com/

第一次点击注册后使用,如果你有账号直接登录即可。

官方提供了三种注册&登录方式:
- 邮箱账号密码
- Github快捷注册登录
- Google账号快捷注册登录
这里根据个人喜好选择即可,我选择的是google账号快捷注册登录。

注册登录成功之后,就会跳转到账号主页。
创建主机
在主页可以看到自己拥有的主机信息,新账号是没有的,所以我们需要点击右侧的“Create Account”按钮进行创建。

选择主机类型
这一步比较关键,需要选择第一项$0forever的,这样才是 永久免费的。在这里也可以进一步看到免费类型提供的服务信息,比如5G的磁盘空间、不限制带宽、不限制域名这些。
更多信息在创建完成后,主机控制面板可以看到,后文也会有说明 。

点击“Create Now”进行创建后,会进行一次真人验证,验证通过后会进入域名信息设置。
域名设置
我们可以根据个人喜好填写二级域名的信息以及选择一级域名的类型,我这里二级域名为yinian,一级域名选择的是ct.ws。

填写完成后点击右下角的“Check Availability”校验是否可用,毕竟有可能和其他已有的重复冲突。
设置密码
校验通过后,会进入密码和验证邮箱信息填写页面。由于我们是免费的所以邮箱那块可以直接选择not approve就行。

最后点击“Create Account”按钮开始创建即可。

Infinityfree主机管理
主机创建完成后会自动跳转到创建成功的主机管理界面,如果你是从新登录进来的可以在主机列表中点击主机信息进入。

在页面的右侧有你的用户名信息,根据观察其实就是你的主机名称。
当你到这一步的时候其实已经可以通过你设置的域名直接访问到默认生成的页面站点信息了。
点击页面左侧的“Control Panel”进入详细的主机快捷管理页面。

在这个页面你可以看到很多快捷管理功能,在右侧还有主机的统计信息以及ftp数据库等相关信息。
站点文件管理
InfinityFree提供了在线页面布局设计,也可以上传部署我们已有的网站代码。站点的文件管理有几种方式:
- 使用网站提供的File Manager进行代码文件管理
- 使用FTP进行代码文件管理
File Manager文件管理
点击主机管理面板左侧或者Control Panel中的“File Manager”进入主机文件在线管理页面。

在页面中可以非常方便快捷的管理文件,包括创建、删除、修改和在线编码等。我们主要操作的是htdocs目录。
FTP文件管理
在管理面板中有提供FTP软件下载和FTP连接信息,使用FTP客户端软件连接上主机就可以非常方便的用FTP管理站点文件了。

这里我常用的是FileZilla软件,以下是我连接上的效果,它默认就是htdocs目录的管理。

文件上传后,重新访问我们设置的域名,就可以看到我们的站点内容了。
免费资源 | 评论:0
| Trackbacks:0
| 阅读:428
Submitted by 海东青 on 2026, July 2, 9:52 PM
| 比较感觉不错: |
| |
| * https://alwaysdata.com 支持多种语言,版本也比较新,注册只需要邮箱。现在直连注册会报您不能订阅我们的服务。 |
| * https://www.accuwebhosting.com/about/free-students-hosting 注册国家没有中国 |
| https://www.ukhost4u.com/free-website-hosting-uk/ |
| https://3001.host/pricing/ 现在会自动跳到 https://status.3001.host/ |
| |
| --- |
| |
| 听说你在寻找免费虚拟主机?: |
| 速度、数据安全、网页安全(修改源代码、挂广告病毒)、随时消失(删库跑路)、难SEO、无客服、无法退出(要求付迁移费)、乱用信用卡 |
| |
| --- |
| 国内的,基本上都是实名+备案: |
| 热铁盒 https://host.retiehe.com/ 静态和单文件PHP |
| |
| |
| 主机 https://www.idcegg.com :短短3个月,注册需要姓名、手机号、QQ号、邮箱、地址、身份证号 |
| 金泰联 http://www.iiddcc.com/ :注册需要姓名、手机号、QQ号、邮箱、地址、身份证号 |
| 恒爱网络 https://www.zzhidc.com/freehost.html 两种方式,一种是发广告,另一种是充五块钱保证金 |
| 番茄互联 https://www.fqidc.cn/free/ 每年2元;https://www.fqidc.cn/index.php/buy/index/10/ |
| 蓝队云 https://www.landui.com/project/freehost/ 每天侵犯放出 |
| 我的免费云 https://www.myfreeyun.com/ |
| 百度智能建站 https://aipage.baidu.com/ 可能收费 |
| https://www.henghost.com/sponsor.shtml |
| https://www.xiaoji.la/ 签到得积分开通,可能缺货 |
| |
| --- |
| 国外的: |
| |
| https://neocities.org/ 网站本体开源 |
| https://www.nodehost.ca/ php mysql 访问很慢 |
| |
| 足球网站:https://hostingfacts.com/ |
| 收集:http://www.100bestfreewebspace.com/searchPage0/Free-Host.html |
| |
| https://infinityfree.net/ :单文件上限10MB;说是禁止使用广告拦截器,不过好像只是Dashboard等有广告,实际上自己的网页不会插广告 |
| https://x10hosting.com/ :有很多被莫名其妙删除的网站 |
| https://www.awardspace.com/free-hosting/ :慢、TOS中说可以把数据出售 |
| https://www.freehosting.com/ :速度慢、删网站 |
| https://www.freehostia.com/ :速度慢 |
| https://www.freewebhostingarea.com/ |
| https://googiehost.com/freehosting.html 有人打广告;需要填写 为什么需要这个帐户? |
| https://freehostingnoads.net/ 希望存在推广;需要填写姓名,手机,邮箱,地址 |
| https://www.biz.nf/ |
| https://www.lima-city.de/ |
| https://www.zzz.com.ua/en |
| https://viewen.com https://dashboard.viewen.com/?language=chinese 希望quora的人评价比较高,但网站没有明显说免费 |
| https://wpnode.net/free-hosting/ 有wp,php和mysql,空间1G;但要信用卡;无法直接打开 |
| https://www.myownfreehost.net/ |
| https://www.xrea.com/ 日本的 |
| https://www.uhostall.com/free-hosting.php |
| https://pipni.cz/ |
| https://www.heliohost.org 社区支持的免费托管,适合所有人,感觉比较好 |
| https://www.instafree.com/ 封了国内的IP |
| https://www.hostpoco.com/ |
| https://profreehost.com/ |
| http://razyhosting.com/ |
| http://0fees.us/hosting.php |
| -- |
| 售二次卖https://ifastnet.com/的: |
| http://olab.in |
| https://byet.host/free-hosting |
| |
| --- |
| 拖放的: |
| |
| https://zh.wix.com/ |
| https://webflow.com/ |
| https://www.weebly.com/ 无法直接打开 |
| https://www.squarespace.com/ |
| https://www.ucraft.com/free-web-hosting |
| https://sites.google.com |
| https://www.ucoz.com 无法直接打开 |
| -- |
| 国内的: |
| https://www.qifeiye.com/ |
| https://www.strikingly.com/ https://www.sxl.cn/ |
| https://jz.fkw.com/ |
| https://www.wqdian.com/ |
| https://www.zhuzi.me/ |
| https://www.zhihu.com/question/19665744 |
| |
| --- |
| 号称免费VPS: |
| host1free/haphost |
| https://www.gigarocket.net/free-vps.php 也有免费托管 |
| 祖鲁贸易 |
| Vpswala.org |
| |
| --- |
| WordPress: |
| https://www.accuwebhosting.com/web-hosting/free-wordpress-hosting |
| https://pantheon.io/plans/pricing |
| https://wordify.com/wordpress-hosting/wp-devsites/ |
| https://www.getshifter.io/ |
| https://quic.cloud/ WordPress 缓存 CDN |
| https://localwp.com/ |
免费资源 | 评论:0
| Trackbacks:0
| 阅读:412