FFXIV Language redirect

Redirect any FFXIV website (DE, FR, EU, JP, etc.) to the NA version

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         FFXIV Language redirect
// @namespace    FFXIV redirect
// @version      1.0
// @description  Redirect any FFXIV website (DE, FR, EU, JP, etc.) to the NA version
// @author       ceeprus
// @match        https://*.finalfantasyxiv.com/*
// @icon         https://www.finalfantasyxiv.com/favicon.ico
// @license MIT 
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    const currentHost = window.location.hostname;

    if (currentHost.startsWith('na.')) return;

    const newHost = currentHost.replace(/^[^.]+\.finalfantasyxiv\.com/, 'na.finalfantasyxiv.com');

    const newUrl = window.location.href.replace(currentHost, newHost);

    window.location.replace(newUrl);
})();