ubuntu 12.04 버전에서 LEMP 환경을 설정했습니다. 온라인 튜토리얼을 따라 단계별로 구성했습니다. index.php에 액세스하면 계속 404 NOT FOUND 오류가 보고되는 것을 발견했습니다(파일 이름이 index.php로 다시 변경된 경우). html로 정상적으로 접근이 가능합니다. 해결방법을 알려주세요.
cgi.fix_pathinfo=0 및 listening = /var/run/php5-fpm.sock이 PHP 관련 구성 파일에 설정되어 있습니다.
nginx 구성 정보는 다음과 같습니다.
<code>server { listen 80; root /vagrant/www/; index index.php index.html index.htm; server_name localhost; error_page 404 /404.html; error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/www; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }</code>