2

jspページに次のメタタグを追加しました

<html>
<head>
<title>xyz</title>
<link type='text/css' rel="stylesheet" href="sdsds/sdsd"/>
<meta content="max-age=0" http-equiv="cache-control">
<meta content="no-store" http-equiv="cache-control">
<meta content="-1" http-equiv="expires">
<meta content="Tue, 01 Jan 1980 1:00:00 GMT" http-equiv="expires">
<meta content="no-cache" http-equiv="pragma">
</head>
<body><h1>jsdsdsds</h1>
<a href="abc">click me</a>
</body>
</html>

「クリックしてください」というリンクをクリックしてナビゲートした後、新しいページを開いています。戻るボタンをクリックすると機能します.ページを期限切れにしたい..注:両方のjspページに同じメタタグを追加しました。これを追加してみました

<%@ page import="java.lang.*" %>
<%
// Set to expire far in the past.
response.setHeader("Expires", "Sat, 6 May 1971 12:00:00 GMT");
// Set standard HTTP/1.1 no-cache headers.
response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
// Set IE extended HTTP/1.1 no-cache headers (use addHeader).
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
// Set standard HTTP/1.0 no-cache header.
response.setHeader("Pragma", "no-cache");
response.setDateHeader ("Expires", 0); //prevents caching at the proxy server
%>

HTML の上と Head の内側の両方..まだ裏のページが見えます.mozilla firefox 10.0 と IE8 でテスト済み 何か提案はありますか?

4

3 に答える 3

2

これを試して

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   <html xmlns="http://www.w3.org/1999/xhtml" >
  <title>Untitled Page</title>
  <script type = "text/javascript" >
  function changeHashOnLoad() {
 window.location.href += "#";
 setTimeout("changeHashAgain()", "50"); 
 }

function changeHashAgain() {
window.location.href += "1";
}

var storedHash = window.location.hash;
 window.setInterval(function () {
 if (window.location.hash != storedHash) {
     window.location.hash = storedHash;
}
}, 50);


</script>
 </head>
 <body onload="changeHashOnLoad(); ">
  Try to hit back!
 </body>
 </html>`
于 2012-12-17T13:32:01.023 に答える
0

セッションが関与していない限り、ブラウザーの戻るボタンでページを期限切れにすることはできません。多くのユーザーが行うページのバックブラウジングのためにあるため、ユーザーにサイトをどのようにブラウズさせたいかによって異なります。実際にはブラウザの戻るボタンを処理する必要があります。それを行う方法はいくつかあります。著名な人は、javascript でこのコードを使用しています:`

window.history.forward();

`しかし、それはあなたのバックリクエストを履歴の現在のページに転送します

<script type="text/javascript">
function noBack(){
            location.replace(logouturl);
            window.location="logouturl";
}

HTML

<input type="button" value="SignOut" onclick="noBack()" align="middle">
于 2012-12-17T13:23:10.417 に答える
-1

これを試して

 <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
 <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
 <META HTTP-EQUIV="EXPIRES" CONTENT="0">

このリンクを確認してください...

于 2012-12-17T13:14:57.087 に答える