Installieren Sie zuerst php-fpm
yum install php-fpm service php-fpm start #启动 php-fpm
und ändern Sie dann die Nginx-Konfigurationsdatei nginx.conf, um PHP zu identifizieren
vi /usr/local/nginx/conf/nginx.conf Fügen Sie einen Code hinzu
location ~ \.php$ { #fastcgi_split_path_info ^(.+\.php)(/.+)$; root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/$fastcgi_script_name; include fastcgi_params; #$document_root }
Starten Sie abschließend Nginx und PHP-FPM neu
service nginx restart service php-fpm restart
Empfohlenes Tutorial: PHP-Video-Tutorial
Das obige ist der detaillierte Inhalt vonNginx kann PHP nicht analysieren. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!