리다이렉트 문의
본문
구글검색으로 들어오면 특정사이트로 이동되는 리다이렉트소스있나요??
직접주소치고 사이트들어가면 정상적으로 사이트되구요~~
답변 2
<<< HTML page : >>>
<meta http-equiv="refresh" content="0; url=http://example.com/" />
<body>
<p><a href="http://example.com/">Redirect</a></p>
</body>
<<< Meta, JavaScript : >>>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1; url=http://example.com">
<script type="text/javascript">
window.location.href = "http://example.com"
</script>
<title>Page Redirection</title>
</head>
<body>
<a href='http://example.com'>자동으로안될시클릭</a>.
</body>
</html>
아마 리퍼러를 체크하는거 같습니다.
답변을 작성하시기 전에 로그인 해주세요.