nginx 주소창에서 확장자 처리
Created: 2018 02 21
/etc/nginx/conf.d/도메인.cnf 를 수정한다.
location / {
try_files $uri $uri.html $uri/ @extensionless-php;
index index.html index.htm index.php;
}
location ~ \.php$ {
try_files $uri =404;
}
location @extensionless-php {
rewrite ^(.*)$ $1.php last;
}
위와 같이 수정하면 php를 생략해도 .php가 붙은거와 같이 작동한다.