14 lines
318 B
HTML
14 lines
318 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="refresh" content="0; url=./index.html">
|
|
<script>
|
|
// JavaScript redirect as a fallback
|
|
const path = window.location.pathname;
|
|
window.location.href = `/?route=${path}`;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |