Skip to content

Commit

Permalink
fix redirects again
Browse files Browse the repository at this point in the history
  • Loading branch information
ronithgan committed Aug 31, 2024
1 parent f7392fb commit 8e9b1aa
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 6 deletions.
6 changes: 5 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;url=/about" />
<script>
if (window.location.pathname === "/about.html") {
window.location.replace("/about");
}
</script>
</head>
<body>
<!-- If meta redirect fails, provide a link -->
Expand Down
6 changes: 5 additions & 1 deletion members.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;url=/members" />
<script>
if (window.location.pathname === "/members.html") {
window.location.replace("/members");
}
</script>
</head>
<body>
<!-- If meta redirect fails, provide a link -->
Expand Down
6 changes: 5 additions & 1 deletion public/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;url=/about" />
<script>
if (window.location.pathname === "/about.html") {
window.location.replace("/about");
}
</script>
</head>
<body>
<!-- If meta redirect fails, provide a link -->
Expand Down
6 changes: 5 additions & 1 deletion public/members.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;url=/members" />
<script>
if (window.location.pathname === "/members.html") {
window.location.replace("/members");
}
</script>
</head>
<body>
<!-- If meta redirect fails, provide a link -->
Expand Down
6 changes: 5 additions & 1 deletion public/rush.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;url=/rush" />
<script>
if (window.location.pathname === "/rush.html") {
window.location.replace("/rush");
}
</script>
</head>
<body>
<!-- If meta redirect fails, provide a link -->
Expand Down
6 changes: 5 additions & 1 deletion rush.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;url=/rush" />
<script>
if (window.location.pathname === "/rush.html") {
window.location.replace("/rush");
}
</script>
</head>
<body>
<!-- If meta redirect fails, provide a link -->
Expand Down

0 comments on commit 8e9b1aa

Please sign in to comment.