CoolFace
Apppublic

MosesSH/bingo

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
worker.js19 linesDownload Raw Back to cloudflare
1const TRAGET_HOST='hf4all-bingo.hf.space' // 请将此域名改成你自己的,域名信息在设置》站点域名查看。2 3export default {4  async fetch(request) {5    const uri = new URL(request.url);6    if (uri.protocol === 'http:') {7      uri.protocol = 'https:';8      return new Response('', {9        status: 301,10        headers: {11          location: uri.toString(),12        },13      })14    }15    uri.host = TRAGET_HOST16    return fetch(new Request(uri.toString(), request));17  },18};19