HD

JEUS(제우스) webtob vhost 설정 및 URLRewrite 설정 본문

WAS/JEUS

JEUS(제우스) webtob vhost 설정 및 URLRewrite 설정

hunecenter 2021. 11. 12. 15:52
반응형

1. http.m 파일 ( 경로 : /webtob/config 상이할수 있음 )

#http.m 파일
*VHOST
vh_hune         DOCROOT="/",
                HostName = "www.hune.ac.kr",
                INDEXNAME = "index.html,index.jsp",
                ServiceOrder = "ext,uri",
                PORT = "80",
                URLRewrite = Y, 
                URLRewriteConfig = "/webtob/config/rewrite.conf", 
                LOGGING = "acc_www",
                ERRORLOG = "err_www"

- URLRewite : URL Redirect 사용

- URLRewriteConfig : URL Redirect 상세 설정 경로 ( /webtob/config에 rewrite.conf이 없으면 생성해주면 됩니다.)

 

2. rewrite.conf 파일( 경로 : /webtob/config 상이할수있음 )

#rewrite.conf
RewriteCond %{HTTP_HOST} www.hune.com
RewriteCond %{REQUEST_URI}  ^/$
RewriteRule . http://www.hune.com [L]

 

참고 : https://waspro.tistory.com/198 URLRewrite 설정

반응형

'WAS > JEUS' 카테고리의 다른 글

JEUS(제우스) vhost 여러개 설정  (0) 2021.11.12
JEUS(제우스) 명령어  (0) 2021.11.12
Comments