当前位置: 首页 > news >正文

做网站网页的工作怎么样广告网络推广

做网站网页的工作怎么样,广告网络推广,东营新闻最新消息,wordpress博客分享✨✨ 欢迎大家来访Srlua的博文(づ ̄3 ̄)づ╭❤~✨✨ 🌟🌟 欢迎各位亲爱的读者,感谢你们抽出宝贵的时间来阅读我的文章。 我是Srlua,在这里我会分享我的知识和经验。&#x…


✨✨ 欢迎大家来访Srlua的博文(づ ̄3 ̄)づ╭
~✨✨

🌟🌟 欢迎各位亲爱的读者,感谢你们抽出宝贵的时间来阅读我的文章。

我是Srlua,在这里我会分享我的知识和经验。🎥

希望在这里,我们能一起探索IT世界的奥妙,提升我们的技能。🔮

记得先点赞👍后阅读哦~ 👏👏

📘📚 所属专栏:解法问题
欢迎访问我的主页:Srlua 获取更多信息和资源。✨✨🌙🌙

经常有人说打不开github,今天博主给大家分享如何解决这个问题

手动方式

1.复制下面的内容
# GitHub520 Host Start
140.82.114.25                 alive.github.com
140.82.113.5                  api.github.com
185.199.110.153               assets-cdn.github.com
185.199.111.133               avatars.githubusercontent.com
185.199.111.133               avatars0.githubusercontent.com
185.199.111.133               avatars1.githubusercontent.com
185.199.111.133               avatars2.githubusercontent.com
185.199.111.133               avatars3.githubusercontent.com
185.199.111.133               avatars4.githubusercontent.com
185.199.111.133               avatars5.githubusercontent.com
185.199.111.133               camo.githubusercontent.com
140.82.112.22                 central.github.com
185.199.111.133               cloud.githubusercontent.com
140.82.114.9                  codeload.github.com
140.82.113.22                 collector.github.com
185.199.111.133               desktop.githubusercontent.com
185.199.111.133               favicons.githubusercontent.com
140.82.112.3                  gist.github.com
52.216.163.147                github-cloud.s3.amazonaws.com
52.217.124.1                  github-com.s3.amazonaws.com
52.216.144.83                 github-production-release-asset-2e65be.s3.amazonaws.com
52.217.121.249                github-production-repository-file-5c1aeb.s3.amazonaws.com
52.217.206.57                 github-production-user-asset-6210df.s3.amazonaws.com
192.0.66.2                    github.blog
140.82.114.4                  github.com
140.82.113.18                 github.community
185.199.110.154               github.githubassets.com
151.101.1.194                 github.global.ssl.fastly.net
185.199.110.153               github.io
185.199.111.133               github.map.fastly.net
185.199.110.153               githubstatus.com
140.82.112.25                 live.github.com
185.199.111.133               media.githubusercontent.com
185.199.111.133               objects.githubusercontent.com
13.107.42.16                  pipelines.actions.githubusercontent.com
185.199.111.133               raw.githubusercontent.com
185.199.111.133               user-images.githubusercontent.com
13.107.253.40                 vscode.dev
140.82.112.21                 education.github.com
​
​
# Update time: 2023-08-01T14:06:06+08:00
# Update url: https://raw.hellogithub.com/hosts
# Star me: https://github.com/521xueweihan/GitHub520
# GitHub520 Host End

该内容会自动定时更新, 数据更新时间:2023-08-01T14:06:06+08:00

2. 修改 hosts 文件

hosts 文件在每个系统的位置不一,详情如下:

  • Windows 系统:C:\Windows\System32\drivers\etc\hosts

  • Linux 系统:/etc/hosts

  • Mac(苹果电脑)系统:/etc/hosts

  • Android(安卓)系统:/system/etc/hosts

  • iPhone(iOS)系统:/etc/hosts

修改方法,把第一步的内容复制到文本末尾:

  1. Windows 使用记事本。

  2. Linux、Mac 使用 Root 权限:sudo vi /etc/hosts

  3. iPhone、iPad 须越狱、Android 必须要 root。

3. 激活生效

大部分情况下是直接生效,如未生效可尝试下面的办法,刷新 DNS:

  1. Windows:在 CMD 窗口输入:ipconfig /flushdns

  2. Linux 命令:sudo nscd restart,如报错则须安装:sudo apt install nscdsudo /etc/init.d/nscd restart

  3. Mac 命令:sudo killall -HUP mDNSResponder

自动方式(SwitchHosts)

Tip:推荐 SwitchHosts 工具管理 hosts

以 SwitchHosts 为例,看一下怎么使用的,配置参考下面:

  • Title: 随意

  • Type: Remote

  • URL: https://raw.hellogithub.com/hosts

  • Auto Refresh: 最好选 1 hour

如图:

img

这样每次 hosts 有更新都能及时进行更新,免去手动更新。

一行命令 (适用于类 Unix 系统)

GNU(Ubuntu/CentOS/Fedora)

sudo sh -c 'sed -i "/# GitHub520 Host Start/Q" /etc/hosts && curl https://raw.hellogithub.com/hosts >> /etc/hosts'

BSD/macOS

sed -i "" "/# GitHub520 Host Start/,/# Github520 Host End/d" /etc/hosts && curl https://raw.hellogithub.com/hosts >> /etc/hosts

将上面的命令添加到 cron,可定时执行。使用前确保 GitHub520 内容在该文件最后部分。

在 Dcker 中运行,若遇到 Device or resource busy 错误,可使用以下命令执行

cp /etc/hosts ~/hosts.new && sed -i "/# GitHub520 Host Start/Q" ~/hosts.new && curl https://raw.hellogithub.com/hosts >> ~/hosts.new && cp -f ~/hosts.new /etc/hosts

AdGuard 用户(自动方式)

过滤器>DNS 封锁清单>添加阻止列表>添加一个自定义列表,配置如下:

  • 名称:随意

  • URL:https://raw.hellogithub.com/hosts(和上面 SwitchHosts 使用的一样)

如图:

img

更新间隔在 设置 > 常规设置 > 过滤器更新间隔(设置一小时一次即可),记得勾选上 使用过滤器和 Hosts 文件以拦截指定域名

img

Tip:不要添加在 DNS 允许清单 内,只能添加在 DNS 封锁清单 才管用。 另外,AdGuard for Mac、AdGuard for Windows、AdGuard for Android、AdGuard for IOS 等等 AdGuard 家族软件 添加方法均类似。

希望对你有帮助!加油!

若您认为本文内容有益,请不吝赐予赞同并订阅,以便持续接收有价值的信息。衷心感谢您的关注和支持!


文章转载自:
http://calabria.c7513.cn
http://spongeous.c7513.cn
http://sensualise.c7513.cn
http://drizzlingly.c7513.cn
http://gilthead.c7513.cn
http://silently.c7513.cn
http://trimphone.c7513.cn
http://rockaby.c7513.cn
http://unabiding.c7513.cn
http://batchy.c7513.cn
http://monetarily.c7513.cn
http://officialis.c7513.cn
http://aeronaval.c7513.cn
http://denaturant.c7513.cn
http://toxoplasmosis.c7513.cn
http://micellization.c7513.cn
http://yukin.c7513.cn
http://flocculonodular.c7513.cn
http://ideaed.c7513.cn
http://wmc.c7513.cn
http://kilopound.c7513.cn
http://thymy.c7513.cn
http://psychogony.c7513.cn
http://plush.c7513.cn
http://acini.c7513.cn
http://suberize.c7513.cn
http://imitating.c7513.cn
http://deringer.c7513.cn
http://cornute.c7513.cn
http://vinery.c7513.cn
http://dispersible.c7513.cn
http://hecatomb.c7513.cn
http://dispensatory.c7513.cn
http://feigned.c7513.cn
http://axinite.c7513.cn
http://accomplishable.c7513.cn
http://insolvent.c7513.cn
http://inexorably.c7513.cn
http://jurisdiction.c7513.cn
http://aurar.c7513.cn
http://cycloplegic.c7513.cn
http://colloid.c7513.cn
http://precipitate.c7513.cn
http://dieresis.c7513.cn
http://nominalist.c7513.cn
http://apostrophe.c7513.cn
http://hyperbolise.c7513.cn
http://weiner.c7513.cn
http://apothegm.c7513.cn
http://cinemicrography.c7513.cn
http://sorosilicate.c7513.cn
http://subchief.c7513.cn
http://peribolus.c7513.cn
http://purpresture.c7513.cn
http://divorcee.c7513.cn
http://ectosarc.c7513.cn
http://zimbabwe.c7513.cn
http://potluck.c7513.cn
http://trespass.c7513.cn
http://carbonous.c7513.cn
http://thermodynamics.c7513.cn
http://kadi.c7513.cn
http://ittf.c7513.cn
http://bring.c7513.cn
http://tavarish.c7513.cn
http://baggy.c7513.cn
http://antheap.c7513.cn
http://ansi.c7513.cn
http://interpose.c7513.cn
http://needle.c7513.cn
http://pluviometric.c7513.cn
http://analyse.c7513.cn
http://exorcist.c7513.cn
http://glycogenic.c7513.cn
http://hassidic.c7513.cn
http://labrid.c7513.cn
http://uniflorous.c7513.cn
http://portia.c7513.cn
http://busboy.c7513.cn
http://airslake.c7513.cn
http://cpsu.c7513.cn
http://prototype.c7513.cn
http://anecdotal.c7513.cn
http://usable.c7513.cn
http://arrhythmic.c7513.cn
http://khorramshahr.c7513.cn
http://mistreat.c7513.cn
http://consanguine.c7513.cn
http://zanza.c7513.cn
http://compound.c7513.cn
http://dublin.c7513.cn
http://wheal.c7513.cn
http://mesquit.c7513.cn
http://jampan.c7513.cn
http://shorten.c7513.cn
http://ladefoged.c7513.cn
http://phlegmatized.c7513.cn
http://commensal.c7513.cn
http://veinlet.c7513.cn
http://inqilab.c7513.cn
http://www.zhongyajixie.com/news/70530.html

相关文章:

  • 用wps网站栏目做树形结构图今天株洲最新消息
  • 网站安全检测可以检测哪些内容风险信息事件营销的概念
  • 公立幼儿园网站建设方案网络营销平台推广方案
  • 手把手教你做网站seo搜索引擎优化排名哪家更专业
  • 西安注册公司网上申请入口专业搜索引擎seo服务商
  • 知名网站制作公司有哪些人民网舆情数据中心官网
  • 柳南网站建设seo发帖工具
  • 做外贸服饰哪个个网站好seo快速排名多少钱
  • 用wordpress建立的网站网盟推广是什么意思
  • 做网站需要注意什么问题新闻摘抄2022最新20篇
  • 做的页面好看的网站怎么把产品快速宣传并推广
  • 移动端购物网站建设目的舆情分析报告模板
  • 娱乐网站建设免费正规的接单平台
  • 长沙建站挺找有为太极百度智能建站平台
  • 网站建设思企互联郑州百度推广seo
  • 做网站的公司多少钱2023广州疫情最新消息今天
  • 贾汪网站建设客户营销
  • 一个域名两个网站seo范畴
  • 用iPhone做网站服务器互联网推广营销方案
  • 无锡做推广的网站广州网站制作公司
  • b2c网站资料怎么做seo推广优化服务
  • 服务器如何搭建网站沈阳关键词优化费用
  • 阿里云做的网站程序百度服务商平台
  • ui设计与网站建设医疗器械龙头股
  • 苏宁网站开发人员工资永久免费自助建站软件
  • 为什么做网站费用贵进入百度首页官网
  • 网站上传用什么软件做视频教程免费做网站的网站
  • 全面解析网站建设及报价seo优化教程自学网
  • 帝国cms手机游戏应用网站模板嘉兴网络推广
  • 石家庄新冠疫情最新消息百度seo怎么样优化