喵哥博客(Brother Meow Blog

喵哥博客(Brother Meow Blog

欢迎来到喵哥的博客 Welcome to Brother Miao’s blog
telegram
github

教你如何Cloudflare反代被墙的网站

如何进行反向代理??
Cloudflare Worker

export default {
async fetch(request, env) {
const url = new URL(request.url);
url.host = 'xxxx 你需要反代的网站 ';
return fetch(new Request(url, request))
}
}

将此内容复制到 Cloudflare Worker 并部署即可。

加载中...
此文章数据所有权由区块链加密技术和智能合约保障仅归创作者所有。