-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.25 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.25 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
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Muhammad Aladdin">
<meta name="description" content="Redirect URL Service.">
<meta name="keywords" content="redirect">
<meta name="referrer" content="origin">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://imuhamad.com/">
</head>
<body>
<script type="text/javascript">
let segments = window.location.pathname.split("/");
let url = "https://imuhamad.com";
if (segments.length == 2) {
switch(segments[1].toLowerCase())
{
case "linkedin": url = "https://linkedin.com/in/imuhamad"; break;
case "github": url = "https://github.com/muhamad"; break;
case "facebook": url = "https://www.facebook.com/this.muhamad"; break;
case "twitter": url = "https://twitter.com/devmuh"; break;
default: url = "https://imuhamad.com";
}
}
window.location.href = url;
</script>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "990230124a964500833c4eb881189f10"}'></script>
</body>
</html>