다음 섹션 편집:
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 ~ [^/]\.php4행을 주석 처리합니다. 즉, 앞에 #을 추가합니다.
#try_files $uri =404;8행에서 주석을 제거합니다.
<strong>include</strong> pathinfo.conf;위치 ~ [^/].php 위에 섹션 추가
location / { if (!-e $request_filename) { rewrite "^/(.*)$" /index.php last; } }Nginx 다시 시작
service nginx restart
위 내용은 포함 콘텐츠를 포함하여 pathinfo를 활성화하고 indexphp를 숨기는 lnmp를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.