mod_rewrite 특정 파일 또는 디렉토리 제외하고 포워딩 하기

리눅스/APACHE|2019. 7. 25. 17:46
반응형

.htaccess

RewriteEngine On

RewriteCond %{REQUEST_URI} !^/test.html

RewriteCond %{REQUEST_URI} !^/imsi/

RewriteRule ^(.*)$ http://sysdocu.tistory.com/$1 [L,R=301]

 

위 예제에서는 test.html 및 imsi 디렉토리를 제외하고 모두 sysdocu.tistory.com 으로 포워딩 됩니다.

 

 

반응형

댓글()