-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
49 lines (47 loc) · 1.53 KB
/
404.html
File metadata and controls
49 lines (47 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting to NZXT Elite Screen Customizer...</title>
<script>
// GitHub Pages 404.html redirect
const currentPath = window.location.pathname;
const currentSearch = window.location.search;
const currentHash = window.location.hash;
// Redirect old URLs to new URLs
if (currentPath.includes('/nzxt-web-integration-amc')) {
const newPath = currentPath.replace('/nzxt-web-integration-amc', '/nzxt-esc');
window.location.replace(newPath + currentSearch + currentHash);
} else {
// Redirect to main page
window.location.replace('/nzxt-esc/' + currentSearch + currentHash);
}
</script>
<meta http-equiv="refresh" content="0; url=/nzxt-esc/">
<link rel="canonical" href="/nzxt-esc/">
</head>
<body>
<p>Redirecting to <a href="/nzxt-esc/">NZXT Elite Screen Customizer</a>...</p>
</body>
</html>
-->
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8" />
<title>Redirecting...</title>
<script>
(function () {
var newBase = "https://nzxt-esc.pages.dev";
var path = window.location.pathname.replace(/^\/nzxt-esc/, "");
var target = newBase + path + window.location.search + window.location.hash;
window.location.replace(target);
})();
</script>
<meta http-equiv="refresh" content="0; url=https://nzxt-esc.pages.dev/" />
</head>
<body>
<p>Redirecting to the new NZXT-ESC site...</p>
</body>
</html>