nginx
+를 사용하여 테스트 서버를 설치했습니다 php-fpm
. 나는 다음을 모두 시도했다.
PHP 파일을 렌더링하지 않는 Nginx + Php5-fpm
Nginx + PHP FPM-> 404 PHP 페이지-파일을 찾을 수 없음
PHP 파일에 액세스하면 nginx에서 404 오류가 발생합니다
내가 시도한 것을 요약하면 :
- 재설치.
- 스크립트 권한 변경 (로 변경
0777
) fastcgi_intercept_errors on
.- , 및
root
레벨에서 지시문을 확인했습니다 .server
location
location ~ \.php
fastcgi_param SCRIPT_FILENAME
지시문을 확인했습니다 .
서버는 .php
스크립트 에서 404를 반환합니다 . 이름을 바꿀 수 .html
있고 괜찮을 것입니다. 이 문제를 어떻게 해결할 수 있습니까?
이것은 내 nginx.conf
:
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 2;
include /etc/nginx/conf.d/*.conf;
index index.html index.htm;
server {
listen 80;
server_name _;
root /var/www/html;
location / {
root /var/www/html;
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /40x.html {
#root /var/www/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
#root /var/www/html;
}
location ~ \.php$ {
root /var/www/html;
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;
}
}
}