[Linux] .htaccess 파일 Redirect 시키기

사이트를 개발하고 유지보수하다 보면 과거에 사용했지만 이제 사용하지 않는 폴더를 발견합니다.

서버 로그를 확인해보면, 분명 지금은 사용하지 않는 디렉토리인데 누군가 유입했던 흔적을 발견하게 됩니다.

위 처럼 특정 누군가가 사용하지 않는 디렉토리로 서버에 접근하였을 때

해당 디렉토리의 .htaccess 파일을 통해 지정한 URL로 Redirect 시킬 수 있습니다.

예시)

# filename : /nothing/.htaccess
# 누군가 min-nine.tistory.com/nothing/으로 들어올 때
# https://min-nine.tistory.com 로 리다이렉트하기
RewriteEngine  on
RewriteCond %{HTTP_HOST} ^(min-nine\.tistory\.com\/nothing)
RewriteRule (.*)  http://min-nine.tistory.com/$1  [L]