^/(정규식1)(정규식2)$
$1: 정규식1
$2: 정규식2
정규식 순서에 따라 순차적으로 매칭되는 변수 $숫자
# domain.com 으로 접속 시 newdomain.com 으로 리다이렉토
server {
server_name domain.com;
return 301 http://www.newdomain.com$request_uri;
}
# domain.com/change/view.php?no=1000 으로 접속 시 domain.com/changed/article.php?art_no=1000 으로 변환
server {
server_name domain.com;
location ~* ^/change/(.*)$ {
rewrite ^/change/(.*)$ http://domain.com/changed/$1 permanent;
break;
}
# domain.com/~~~ 으로 접속 시 newdomain.com/~~~ 으로 변환
server {
server_name domain.com;
location ~* ^(.*)$ {
rewrite ^(.*)$ http://www.newdomain.com$1 permanent;
break;
}
# domain.com/aaa.html 혹은 domain.com/bbb.html 으로 접속 시 domain.com/chage.html 으로 변환
server {
server_name domain.com;
location ~* ^(.*)$ {
rewrite ^/aaa.html$ /chage.html permanent;
rewrite ^/bbb.html$ /chage.html permanent;
break;
}
'웹어플리케이션서버' 카테고리의 다른 글
Tomcat7에서 세션 쿠키 네임 설정 (0) | 2015.10.29 |
---|---|
Tomcat 80, 443포트 Non-Root 계정으로 띄우기 (0) | 2015.06.23 |
Mutiple Tomcat Load Balancing(Nginx1+TomcatN) 구성 (0) | 2014.07.24 |
[Tomcat7] Context [] startup failed due to previous errors (0) | 2013.06.24 |
tomcat 6.0.26 jdbc memory leak 해결법 (0) | 2013.05.10 |