ดูสำเนาทั้งหมดของหน้าที่แคชไว้บน Google หรือไม่

ขณะนี้ฉันกำลังทำโครงการที่เกี่ยวข้องกับการแสดงหน้าเว็บเวอร์ชันแคชจาก Google อย่างไรก็ตาม ดูเหมือนว่าจะแสดงเฉพาะหน้าที่แคชไว้ล่าสุดเท่านั้น

ตัวอย่างเช่น ฉันรู้ว่าฉันสามารถใช้สิ่งนี้ได้:

http://webcache.googleusercontent.com/search?q=cache:stackoverflow.com

แต่ฉันจะดูสำเนาแคชอื่น ๆ ของ stackoverflow.com ที่ Google แคชไว้เมื่อหลายปีก่อนได้อย่างไร


person user2410854    schedule 29.10.2013    source แหล่งที่มา


คำตอบ (2)


คุณสามารถใช้บริการ archive.org ได้

URL ตัวอย่างในกรณีของคุณจะเป็น https://web.archive.org/web/*/stackoverflow.com คุณจะเห็นลิงก์ปฏิทินพร้อมสำเนาเพจของคุณ

หากต้องการดูสำเนาล่าสุด URL จะเปลี่ยนเล็กน้อย https://web.archive.org/web/stackoverflow.com

สำหรับงานที่คล้ายกัน ฉันใช้ https://cachearchive.com คุณไม่จำเป็นต้องสร้าง URL ยาวทุกครั้ง

person kozulov    schedule 07.11.2019

ฉันคิดวิธีแก้ปัญหาตัวกรองเว็บโดยใช้หน้าที่แคชไว้ ซึ่งอาจช่วยได้

<!DOCTYPE html>
<html>
<title>View Text Only Cached Page</title>
<head>
                <script language="javascript" type="text/javascript">
                    function urlGen(f)
                        {
                            var i1 = "http://webcache.googleusercontent.com/search?q=cache:";
                            var i2 = f.intranet.value;
                            var i3 = "&hl=en&gl=ca&strip=1";

                            var fullURL = i1 + i2 + i3;
                            f.action = i1 + i2 + i3;

                            return i1 + i2 + i3;
                        }
                </script>
</head>
<body>
<div id="row2">
                <!-- Intranet Search -->
                <form action="google.com" onSubmit="window.location.href=urlGen(this)" method="post" style="width:350px">
                <fieldset>
                <legend>View Text-only Cached Page</legend>
                <input type="text" id="intranet" size="45" value="insert link"
                    onFocus="this.value = ''"
                    onBlur="this.value = 'insert link'" / >

            <br>
<div style="width:300px;">
paste or type the address of the webpage you would like to view in a text only cached version and press "Enter".
<br/><br/>
<b>If a result is not found try adding "/" at the end of the submitted address.</b>
</div>
</fieldset>
</form>
</div>



</body>
</html>

person Tom062    schedule 31.03.2015