문서의 이전 판입니다!


Url Redirect

html

<html>
<head>
<meta http-equiv="Refresh" content="0; url=http://www.example.com/" />
</head>
<body>
<p>Please follow <a href="http://www.example.com/">this link</a>.</p>
</body>
</html>

php

header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www.example.com/');
exit();

역링크