.php가 URL에있는 경우에만 PHP 파일을 다운로드하는 Nginx


8

나는 이것이 인기있는 질문이라는 것을 알고 있지만 비슷한 문제가있는 사람을 찾지 못했습니다. .php 확장자가 URL에없는 한 PHP 파일을 제공 할 수 있습니다. 예를 들면 다음과 같습니다.

내가 가면 localhostindex.php 파일이 제공됩니다. 내가 가면 localhost/index.php파일을 다운로드합니다. 내 구성은 다음과 같습니다.

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    # Make site accessible from http://localhost/
    server_name localhost;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
        # Uncomment to enable naxsi on this location
        # include /etc/nginx/naxsi.rules
    }

    # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
    #location /RequestDenied {
    #   proxy_pass http://127.0.0.1:8080;    
    #}

    error_page 404 /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
        deny all;
    }
}

나는이 문제로 혼란스럽고 누군가가 그 문제에 경험이 있는지 궁금합니다.


당신은 또한 게시 할 수 php.ini있습니까?
kraxor 2016 년

답변:


4

이것이 때때로 작동한다면 (PHP-FPM이 작동하고 있음을 알고 있음), 이것은 nginx 문제가 될 것입니다. PHP 위치 블록의 몇 가지 규칙이 의심됩니다. 그들은 수도 덤프하는 Nginx의 원인이 특정 URL에 파괴 될 수있다.

당신은 필요한 디렉토리 인덱스를 잡기위한 2 개 라인 :

location ~ \.php$ {
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    include fastcgi_params;
}

해당 위치를 다시 제거하고 nginx를 다시로드 한 후 어떤 일이 발생하는지 확인하십시오.

다시 작성해야하는 경우 (워드 프레스의 예쁜 URL 등) 다음과 같이 추가하려고합니다.

location / {
        try_files $uri $uri/ /index.php?$args;
}

그러나 표준 URL이 작동하면 그렇게하십시오.


2
나는 변경했고 처음에는 작동하지 않았다. 그런 다음 브라우저에서 캐시를 제거하고 작동했습니다. 시간 내 주셔서 감사합니다! :)
Mathew A

1

그러나이 같은 문제가 있었지만이 줄도 필요했습니다.

include fastcgi.conf;

나도했다

location ~* .+ {..}

위치를 확인한 후 ~ \.php$ {..}


1
흥미로운 include fastcgi.conf;것은 거의 동일 include fastcgi_params;하지만 추가로 포함 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;하는 일부 사용자가 사이트 구성에 수동으로 포함하는 include fastcgi_params;대신 .conf포함합니다.
LiveWireBT
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.