jonathanKingston / fix-my-http

A trial into fixing padlocks
MIT License
1 stars 0 forks source link

Suggested archive.org redirect improvement #5

Closed jonathanKingston closed 7 years ago

jonathanKingston commented 7 years ago

301 pages in archive.org wait 5 seconds to reload to the redirected page

See: https://web.archive.org/web/20170126150325/http://www.libdems.org.uk/membership_renew

The code from Archive.org:

    function go() {
        document.location.href = "\/web\/20170126150325\/https:\/\/libdems.secure.force.com\/LiberalDemocrats\/RenewMembership";
    }
    window.setTimeout("go()",5000);

Consider checking this URL for https and instantly redirecting (The extension would do that anyway when it gets to the archived https page however waiting 5 seconds is bad user experience).

Highlighted by @bunnybooboo checking other pages on this site 👍

jonathanKingston commented 7 years ago

Fixed with latest push