Skip to content

Commit

Permalink
Fix for redirector
Browse files Browse the repository at this point in the history
  • Loading branch information
johndmulhausen committed Oct 6, 2016
1 parent 79695f4 commit a01754c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 404.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ function doFwd() {
if (gonnaFwd) {
console.log("Forwarding to: " + newURL);
//window.location.replace(newURL);
//document.write('<meta http-equiv="refresh" content="0; url=' + newURL + '">')
document.write('<meta http-equiv="refresh" content="0; url=' + newURL + '">')
} else {
//window.location.replace("/sorry/#" + forwardingURL);
//document.write('<meta http-equiv="refresh" content="0; url=/sorry/#' + forwardingURL + '">')
document.write('<meta http-equiv="refresh" content="0; url=/sorry/#' + forwardingURL + '">')
}
}
window.onload = doFwd;
Expand Down

0 comments on commit a01754c

Please sign in to comment.