|
Poster:
|
DoomTay |
Date:
|
Jan 22, 2018 7:49am |
|
Forum:
|
web
|
Subject:
|
Re: Not Found The requested URL was not found... |
It looks to me like the culprit is in this block of code
var SString = "nintendoland.com";
var FrameSetPath = "home2.htm";
var FrameSetPath2 = "home.htm";
var L = SString.length + 1;
var DocURL = unescape(self.location.href);
var TopURL = unescape(top.location.href);
var SiteURLEndPos = DocURL.toLowerCase().indexOf(SString) + L;
if (SiteURLEndPos >= L) {
var SiteRoot = DocURL.substring(0,SiteURLEndPos);
var DocPath = DocURL.substring(SiteURLEndPos, DocURL.length);
var FrameSetURL = SiteRoot + FrameSetPath;
var FrameSetURL2 = SiteRoot + FrameSetPath2;
var FSOnTop = (TopURL.indexOf(FrameSetURL)>=0 || TopURL.indexOf(FrameSetURL2)>=0);
if (!FSOnTop) {
var NewURL = FrameSetURL + '?' + escape(DocPath);
top.location.href = NewURL
}
}
I haven't examined it real thoroughly, but my guess is that it expects an URL like
http://nintendoland.com/zebes/index.htm, and an URL like
https://web.archive.org/web/20010417091052/http://nintendoland.com:80/zebes/index.htm messes things up
This post was modified by DoomTay on 2018-01-21 23:44:32
This post was modified by Jeff Kaplan on 2018-01-22 15:49:12