Fix auth redirects for /dreamgirl subpath

Make login/logout and redirects work when deployed under a subdirectory (e.g. /dreamgirl).

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dsyoon
2026-02-08 12:39:03 +09:00
parent e008000aa6
commit ffcb263131
5 changed files with 22 additions and 8 deletions

View File

@@ -3,13 +3,13 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="refresh" content="0; url=/index.php" />
<meta http-equiv="refresh" content="0; url=index.php" />
<title>Redirecting...</title>
</head>
<body>
<script>
window.location.replace('/index.php');
window.location.replace('index.php');
</script>
<a href="/index.php">Continue</a>
<a href="index.php">Continue</a>
</body>
</html>