다음 섹션 편집:
location ~ [^/]\.php(/|$) { # comment try_files $uri =404; to enable pathinfo try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; <strong>include</strong> fastcgi.conf; #<strong>include</strong> pathinfo.conf; }
location ~ [^/]\.php
#try_files $uri =404;
<strong>include</strong> pathinfo.conf;
location / { if (!-e $request_filename) { rewrite "^/(.*)$" /index.php last; } }
service nginx restart
위 내용은 포함 콘텐츠를 포함하여 pathinfo를 활성화하고 indexphp를 숨기는 lnmp를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.