Heim >Backend-Entwicklung >PHP-Tutorial >lnmp aktiviert Pathinfo und versteckt Indexphp
Bearbeiten Sie den folgenden Abschnitt:
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 ~ [^/]\.phpKommentieren Sie Zeile 4 aus, d. h. fügen Sie # davor ein
#try_files $uri =404;Entfernen Sie den Kommentar in Zeile 8
<strong>include</strong> pathinfo.conf;an Ort und Stelle ~ Abschnitt oben hinzufügen [^/].php
location / { if (!-e $request_filename) { rewrite "^/(.*)$" /index.php last; } }Nginx neu starten
service nginx restart
Das Obige stellt lnmp vor, um Pathinfo zu aktivieren und Indexphp auszublenden, einschließlich Include-Inhalten. Ich hoffe, es wird für Freunde hilfreich sein, die sich für PHP-Tutorials interessieren.