nginx rewrite 주의사항

712 단어 htmlnginx
rewrite 에 {} 번호 가 포함 되 어 있다 면 이 규칙 은 따옴표 를 더 해 야 합 니 다.
다음은 잘못된 것 이다.
rewrite ^(.*)/archives/([\d]{1,5}).html$ ^(.*)/?p=$2 last; 

설정 의 정확성 을 확인 하려 면 다음 명령 을 입력 하 십시오:
/usr/local/nginx/sbin/nginx -t

 nginx 가 알려 줄 게:
2010/10/11 11:28:22 [emerg] 28797#0: directive "rewrite" is not terminated by ";" in /usr/local/nginx/conf/nginx.conf:435
2010/10/11 11:28:22 [emerg] 28797#0: the configuration file /usr/local/nginx/conf/nginx.conf test failed
 
 
rewrite "^(.*)/archives/([\d]{1,5}).html$"  ^(.*)/?p=$2 last;

좋은 웹페이지 즐겨찾기