./front-end
URL Redirect 리다이렉트
HTML Meta 태그
<html>
<meta http-equiv="refresh" content="0; url=https://blog.miyam.net"></meta>
</html>
JavaScript
window.location.href = 'http://www.abc.com/';
- 주소 비교 후 이동
if ( window.location == 'http://www.abc.com/' ) {
window.location.href='http://www.codingfactory.net/';
}