ホームページ >バックエンド開発 >PHPチュートリアル >lnmp pathinfo を有効にし、index.php を非表示にする、lnmppathinfo_PHP チュートリアル
次のセクションを編集します:
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; include fastcgi.conf; #include pathinfo.conf; }
location ~ [^/]\.php4 行目をコメントアウトします。つまり、先頭に #
#try_files $uri =404;を追加し、8 行目のコメントを削除します。
include pathinfo.conf;場所 ~ [^/].php にセクション
location / { if (!-e $request_filename) { rewrite "^/(.*)$" /index.php last; } }を追加して、Nginx
service nginx restartを再起動します