about-blank / index.html
soiz1's picture
Update index.html
3808162 verified
raw
history blame contribute delete
683 Bytes
<script>
history.replaceState(null, null, null);
document.addEventListener('DOMContentLoaded', function() {
// 履歴があるか確認
if (window.history.length > 1) {
// 履歴がある場合はGoogleにリダイレクト
location.replace('https://google.com');
} else {
// 履歴がない場合はwindow.closeを試行
if (window.close) {
window.close();
} else {
// 万一のためリダイレクト
location.replace('https://google.com');
}
}
});
</script>