orbenn Posted June 27, 2015 Share Posted June 27, 2015 (edited) As I'm sure some of you have noticed, URLs to skyrim mods on nexus used to be of the format:skyrim.nexusmods.com/mods/[modnumber]Now they are of the format:nexusmods.com/skyrim/mods/[modnumber]This has caused every link on the internet that references a mod for skyrim to break.Web team: please add a redirector for the old URL format so that old links are not broken!Thanks Edited June 27, 2015 by orbenn Link to comment Share on other sites More sharing options...
Deleted3507349User Posted June 27, 2015 Share Posted June 27, 2015 Yes, please :) Link to comment Share on other sites More sharing options...
Deleted5770650User Posted June 28, 2015 Share Posted June 28, 2015 Not just skyrim http://forums.nexusmods.com/index.php?/topic/2982784-how-to-fix-all-the-broken-links/ Link to comment Share on other sites More sharing options...
Nixsy Posted June 29, 2015 Share Posted June 29, 2015 (edited) you can use greasemonkey or tampermonkey to temp fix the links until nexus manage to fix their dns stuff. // ==UserScript== // @name Redirect skyrim nexusmods // @namespace Nix // @description nexus domain change fix // @include http://*.* // @include https://*.* // @version 1 // @grant none // ==/UserScript== document.addEventListener("DOMContentLoaded", replaceLinks, false ); if( document.readyState === "complete" ) { replaceLinks(); } function replaceLinks() { Array.forEach( document.links, function(a) { a.href = a.href.replace( "skyrim.nexusmods.com", "nexusmods.com/skyrim" ); }); }this works fine for skyrim and is easily adapted for other games. Edited June 29, 2015 by Nixsy Link to comment Share on other sites More sharing options...
Recommended Posts