PTT 404 Redirect to PTTWeb

PTT 網頁 404 的時候 導頁到 PTTWeb

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         PTT 404 Redirect to PTTWeb
// @namespace    https://github.com/livinginpurple
// @version      2025.11.27.03
// @description  PTT 網頁 404 的時候 導頁到 PTTWeb
// @license      WTFPL
// @author       livinginpurple
// @match        https://*.ptt.cc/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(async function() {
    'use strict';
    console.log(`${GM_info.script.name} is loading.`);
    try {
        const response = await fetch(location.href, { method: 'HEAD' });
        if (!response.ok) {
            // 使用 replace 避免 404 頁面卡在瀏覽器歷史紀錄中
            const newUrl = location.href.replace('ptt.cc', 'pttweb.cc');
            location.replace(newUrl);
        }
    } catch (error) {
        console.error(`${GM_info.script.name} Error: `, error);
    }
    console.log(`${GM_info.script.name} is running.`);
})();