반응형
<!-- 웹로직에서 /app 처리하겠다 -->
<Location /app>
SetHandler weblogic-handler
</Location>
<!-- 웹로직에서 *.html 처리하지 않겠다 -->
WLExcludePathOrMimeType *.html
<!-- 웹로직에서 *.jsp 처리하겠다 -->
MatchExpression *.jsp
<!-- 웹로직에서 /app안의 *.html을 제외하고 다른것들 처리하겠다 -->
<Location /app>
WLExcludePathOrMimeType *.html
SetHandler weblogic-handler
</Location>
<!-- 여러개의 document 사용하기 -->
DocumentRoot "/webserver/htdocs"
<!-- uri가 /test로 들어오면 /webserver/upload를 바라본다. -->
Alias /test /webserver/upload
#WLExcludePathOrMimeType 제대로 인식하지 못할경우
WLExcludePathOrMimeType *.jpg, *.html, *.js
#타입을 한개씩 지정한다.
WLExcludePathOrMimeType *.jpg
WLExcludePathOrMimeType *.html
WLExcludePathOrMimeType *.js
반응형
'일 > WEB' 카테고리의 다른 글
아파치에서 modcluster mod_cluster 컴파일하기 (0) | 2019.11.29 |
---|---|
아파치 proxypass 연동 (0) | 2019.11.29 |
아파치 윈도우 서비스 등록 (0) | 2019.11.29 |
Apache 2.4 설치 (0) | 2019.11.29 |
아파치, 웹로직 연동 (0) | 2019.11.29 |