fix: 로그인 후 뒤로가기 시 로그인 화면 머무름 방지

- 로그인 페이지에 캐시 금지 헤더(no-store) 추가 → 뒤로가기 시 서버 재요청
- bfcache 복원(pageshow persisted) 시 새로고침 → 로그인 상태면 대시보드로 리다이렉트

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
taekyoungc
2026-06-25 16:15:17 +09:00
parent 4fef5556ca
commit 933d174fa4
2 changed files with 13 additions and 0 deletions

View File

@@ -18,4 +18,11 @@
<a href="<?= base_url('register') ?>" class="bg-white text-gray-700 border border-gray-300 px-4 py-2 rounded-lg text-sm shadow-sm hover:bg-gray-50 transition">회원가입</a>
</div>
</form>
<script>
// 뒤로가기로 bfcache(뒤로/앞으로 캐시)에서 복원된 경우, 서버에 재요청하여
// 이미 로그인 상태면 대시보드로 리다이렉트되게 한다.
window.addEventListener('pageshow', function (e) {
if (e.persisted) { window.location.reload(); }
});
</script>
<?= $this->endSection() ?>