// PC端页面
const PCPage = 'https://www.example.com';
// 移动端页面
const MobilePage = 'https://m.example.com';
async function handleRequest(request) {
const ua = request.headers.get('user-agent');
// 如果是移动端,则返回移动端页面
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(ua)) {
return await fetch(MobilePage);
}
// 如果是PC端,则返回PC端页面
return await fetch(PCPage);
}
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request));
});
移动端页面跳转
暂无讨论,说说你的看法吧