httpd-vhosts.conf 파일 수정

vi /home/apache/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>
	생략 .. 
    <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{HTTPS} off
       RewriteCond %{REMOTE_ADDR}  !127.0.0.1
       RewriteCond %{REQUEST_URI} !^/intro.html$ [NC]
       RewriteRule .* /intro.html [R,L]
    </IfModule>
	생략 .. 
</VirtualHost>

http://www.test.co.kr/page/1.jsp 

 

REMOTE_ADDR : 클라이언트 접속 아이피 

REQUEST_URI : page/1.jsp

 

 

 

+ Recent posts