묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
짧은주소 질문드립니다.
2017.06.26 00:32
nginx 에서 root 경로를 /var/www로 지정해놓았고,
하위 디렉토리로 test를 생성하여 xe를 설치하였을때
rewrite코드를 가진 rewrite.conf 를
location /test {
include rewrite.conf;
}
를 하였을때, 짧은주소가 동작하지 않습니다.
하위 디렉토리를 이용할 시 어떻게 바꿔주어야 동작을 할지 조언 부탁드리겠습니다.
자문자답입니다.
rewrite 구문을 모두 하위 디렉토리 경로를 추가 해주면 됩니다.
ex)
rewrite ^/(layouts|m.layouts)/(.+)/(.+).html$ /index.php last;
rewrite ^/test/(layouts|m.layouts)/(.+)/(.+).html$ /test/index.php last;