29 lines
738 B
HTML
29 lines
738 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
<title></title>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
(function () {
|
|
const path = window.location.pathname;
|
|
|
|
const isDirect404Access = path.includes('404.html');
|
|
|
|
if (isDirect404Access) {
|
|
window.location.replace('/');
|
|
} else {
|
|
const newPath = '/#' + path + window.location.search;
|
|
window.location.replace(newPath);
|
|
}
|
|
})();
|
|
</script>
|
|
</body>
|
|
|
|
</html> |