2013-10-29 2 views
1

저는 현재 Google의 페이지 캐시 된 버전을 표시하는 프로젝트를 진행하고 있습니다. 그러나 가장 최근에 캐시 된 페이지 만 표시합니다.Google에 저장된 페이지의 모든 복사본을 봅니다.

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

하지만 어떻게 stackoverflow.com의 다른 캐시 된 사본 구글 캐시 년 전에 것을 볼 수 있습니다 :

예를 들어, 나는 이것을 사용할 수 있습니다 알아?

답변

0

나는이 도움이 될 캐시 된 페이지를 사용하여 웹 필터에 대한 해결책으로 내놓았다

<!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>