wuyou.net Domain Redirect

Redirects duplicated wuyou.net subdomains for a consistent experience and login status.

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         wuyou.net Domain Redirect
// @name:zh-CN   无忧启动论坛 wuyou.net 子域名重定向
// @author       ttimasdf
// @namespace    https://rabit.pw/
// @license      Apache License 2.0
// @version      1.0
// @description  Redirects duplicated wuyou.net subdomains for a consistent experience and login status.
// @description:zh-CN 对 wuyou.net 子域名进行重定向(如搜索引擎收录的 bbs.c3.wuyou.net)以保持一致的体验。
// @match        http://bbs.c3.wuyou.net/*
// @match        http://wuyou.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Redirect to the desired URL
    window.location.href = "http://bbs.wuyou.net" + window.location.pathname + window.location.search;
})();