host

    Linux - WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED

    오류 발생ip를 변경한 도메인으로 ssh 연결을 시도할 때 제목과 같은 오류가 발생했다.해결방법아래 명령어를 입력한 후 재시도ssh-keygen -R 도메인# Ex. ssh-keygen -R aleph.kr

    js - 현재 페이지 url 관련 (location 객체)

    1. 자주 사용하는 location 객체 // Ex) https://test.com:80/newpost?type=post window.location.href // Ex) https: window.location.protocol // Ex) test.com:80 window.location.host // Ex) test.com window.location.hostname // Ex) 80 window.location.port // Ex) newpost window.location.pathname // Ex) ?type=post window.location.search 2. 참고 https://hianna.tistory.com/464