nugawiki

./categories/front-end

URL 리다이렉트 (HTML·JS)

업데이트 2026-07-21 조회수

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/';
}

./comments