Is it possible to link to an archived web page from the Internet Archive's Wayback Machine so that the archive header (for browsing other archives of the same page) isn't shown? Perhaps an url parameter? I didn't find anything on their FAQ.
3 Answers
from "Wikipedia Help:Using the Wayback Machine" : (Source)
Specific archive copy
Once the target web page has been archived, each of the specific dated archives can be individually requested using the format shown below.
The next example links to the archived copy of the main index page of Wikipedia exactly as it appeared on30 September 2002 at 12:35:25 pmin the UTC timezone.
The datetime format isYYYYMMDDhhmmss. (examples are archives of this question.)Use the above format to link directly to a specific archive copy.
Adding an asterisk (
*) immediately after the date (or in place of it) is a quick way to show the calendar view of all archived copies.The following flags can be appended to the datetime field to modify the format in which the archived content is displayed:
id_Identity - the original resource, return it as it was archived. examplejs_JavaScript - return document marked up as JavaScript. examplecs_CSS - return document marked up as CSS. exampleim_Image - return document as an image. exampleif_iFrame - normal archive except without the navigational toolbar. exampleDepending on the circumstances under which the page images were archived, the rendering of these pages may not be consistent... The datetime format is
YYYYMMDDhhmmss, followed by an optional formatting flag, such as the ones above.
- 343
- 2
- 8
Append id_ to the end of the date string in the url.
http://web.archive.org/web/19981111184551/http://google.com/ (Header shown)
http://web.archive.org/web/19981111184551id_/http://google.com/ (No header)
Source: https://web.archive.org/web/20130329115724/http://faq.web.archive.org/page-without-wayback-code/
If you want to view a page from the Wayback Machine that does not have all of the Wayback rewritten code in it, you can view the bare, archived page by adding “id_” to the end of the date in the URL.
Page with rewritten links and other Wayback code in it:
Page rendered exactly as it was archived:
As commenter fzbd states, appending if_ (not id_) to the date string works best.
http://web.archive.org/web/20200101000208/https://webapps.stackexchange.com/
- Header shown
http://web.archive.org/web/20200101000208if_/https://webapps.stackexchange.com/
- No header shown
The problem with id_ is that you lose a lot of resources you most likely want. It is less apparent in phwd's answer because google.com is used as the example, and that page includes almost everything in that single page's source and not as external resources. For the vast majority of websites, id_ will cause serious breakage. For example, using again this website:
- http://web.archive.org/web/20200101000208id_/https://webapps.stackexchange.com/
- Quite broken albeit no header shown
- 131
- 1