-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
20 lines (20 loc) · 683 Bytes
/
Copy path404.html
File metadata and controls
20 lines (20 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow">
<meta name="referrer" content="no-referrer">
<link rel="canonical" href="https://tools.agenticfabworks.com/">
<title>AgenticFabWorks Tools로 이동</title>
</head>
<body>
<p><a href="https://tools.agenticfabworks.com/">AgenticFabWorks Tools로 이동</a></p>
<script>
const base = "/agenticfabworks_tools";
const path = location.pathname.startsWith(base)
? location.pathname.slice(base.length) || "/"
: "/";
location.replace(`https://tools.agenticfabworks.com${path}${location.search}${location.hash}`);
</script>
</body>
</html>