Skip to content

Commit cb81b0d

Browse files
committed
리다이렉트 페이지 추가/수정
1 parent 8c54b30 commit cb81b0d

3 files changed

Lines changed: 60 additions & 2 deletions

File tree

index.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,24 @@
22
<html xmlns="http://www.w3.org/1999/xhtml">
33
<head>
44
<title>.NET Dev</title>
5-
<meta http-equiv="refresh" content="0;URL='https://www.dotnetdev.kr/?refresh=2'" />
65
<meta name="viewport" content="width=device-width, user-scalable=no" />
76
<meta property="og:title" content=".NET Dev" />
87
<meta property="og:site_name" content=".NET Dev" />
98
<meta property="og:url" content="https://www.dotnetdev.kr/" />
109
<meta property="og:description" content=".NET Dev" />
1110
<meta property="og:type" content="website" />
11+
<!--
1212
<meta property="og:image" content="https://github.com/dotnetdev-kr/dotnetdevkr.github.io/raw/gh-pages/card.png" />
13+
-->
1314
</head>
1415
<body>
15-
<p>Redirecting to <a href="https://www.dotnetdev.kr/?refresh=2">.NET Dev</a> homepage.</p>
16+
<p>Redirecting to <a id="targetUrl" href="#">destination</a> web site.</p>
17+
<script type="text/javascript">
18+
var targetUrl = 'https://forum.dotnetdev.kr/?refresh=2';
19+
document.getElementById('targetUrl').setAttribute('href', targetUrl);
20+
window.setTimeout(function(){
21+
window.location.replace(targetUrl);
22+
}, 0);
23+
</script>
1624
</body>
1725
</html>

redirect/forum/index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<title>.NET Dev</title>
5+
<meta name="viewport" content="width=device-width, user-scalable=no" />
6+
<meta property="og:title" content=".NET Dev" />
7+
<meta property="og:site_name" content=".NET Dev" />
8+
<meta property="og:url" content="https://www.dotnetdev.kr/" />
9+
<meta property="og:description" content=".NET Dev" />
10+
<meta property="og:type" content="website" />
11+
<!--
12+
<meta property="og:image" content="https://github.com/dotnetdev-kr/dotnetdevkr.github.io/raw/gh-pages/card.png" />
13+
-->
14+
</head>
15+
<body>
16+
<p>Redirecting to <a id="targetUrl" href="#">destination</a> web site.</p>
17+
<script type="text/javascript">
18+
var targetUrl = 'https://forum.dotnetdev.kr/?refresh=2';
19+
document.getElementById('targetUrl').setAttribute('href', targetUrl);
20+
window.setTimeout(function(){
21+
window.location.replace(targetUrl);
22+
}, 0);
23+
</script>
24+
</body>
25+
</html>

redirect/sessions/index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<title>.NET Conf / L!VE Sessions</title>
5+
<meta name="viewport" content="width=device-width, user-scalable=no" />
6+
<meta property="og:title" content=".NET Conf / L!VE Sessions" />
7+
<meta property="og:site_name" content=".NET Dev" />
8+
<meta property="og:url" content="https://www.dotnetdev.kr/" />
9+
<meta property="og:description" content=".NET Dev" />
10+
<meta property="og:type" content="website" />
11+
<!--
12+
<meta property="og:image" content="https://github.com/dotnetdev-kr/dotnetdevkr.github.io/raw/gh-pages/card.png" />
13+
-->
14+
</head>
15+
<body>
16+
<p>Redirecting to <a id="targetUrl" href="#">destination</a> web site.</p>
17+
<script type="text/javascript">
18+
var targetUrl = 'https://www.dotnetconf.kr/live/2023/fall';
19+
document.getElementById('targetUrl').setAttribute('href', targetUrl);
20+
window.setTimeout(function(){
21+
window.location.replace(targetUrl);
22+
}, 0);
23+
</script>
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)