Skip to content
This repository has been archived by the owner on Jan 12, 2025. It is now read-only.

Add period so it finds the dir inside the root folder #16

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
<title>Redirect Page</title>
<script>
window.onload = function() {
window.location.href = "/static/"; // Replace with your desired URL
window.location.href = "./static/"; // Replace with your desired URL
};
</script>
</head>
<body>
<h1>Redirecting...</h1>
<p>If you are not redirected, <a href="/static/">click here</a>.</p>
<p>If you are not redirected, <a href="./static/">click here</a>.</p>
</body>
</html>