电脑端页面www

匹配移动端常见子域(m. h5. mobile. wap. touch. 3g.),尝试将移动网址转换为www网址,失败则恢复原始网址。

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         电脑端页面www
// @version      1.4
// @namespace    https://greasyfork.org/users/1171320
// @description  匹配移动端常见子域(m. h5. mobile. wap. touch. 3g.),尝试将移动网址转换为www网址,失败则恢复原始网址。
// @author       yzcjd
// @author2     Lama AI 辅助
// @match        *://m.*/*
// @match        *://h5.*/*
// @match        *://mobile.*/*
// @match        *://wap.*/*
// @match        *://touch.*/*
// @match        *://3g.*/*
// @run-at       document-start
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    const hostname = location.hostname;

    // 防止跳转死循环
    if (sessionStorage.getItem('__pc_redirected__')) return;

    // 正则匹配常见移动前缀
    const mobilePrefixPattern = /^(m|h5|mobile|wap|touch|3g)\./i;
    if (!mobilePrefixPattern.test(hostname)) return;

    // 将匹配到的移动前缀替换为 www.
    const pcHostname = hostname.replace(mobilePrefixPattern, 'www.');

    // 重新组装完整 PC 版地址
    const pcUrl = location.protocol + '//' + pcHostname + location.pathname + location.search + location.hash;

    // 检查目标PC页面是否存在
    fetch(pcUrl, { method: 'HEAD' })
        .then(response => {
            if (response.ok) {
                sessionStorage.setItem('__pc_redirected__', '1'); // 设置跳转标记
                window.location.href = pcUrl; // 跳转到PC版
            } else {
                console.warn('[跳转失败] PC版返回状态:', response.status);
            }
        })
        .catch(error => {
            console.warn('[跳转失败] 网络错误:', error);
        });
})();