Files
dreamgirl/index.html
dsyoon ffcb263131 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>
2026-02-08 12:39:03 +09:00

16 lines
376 B
HTML

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