默认情况下无法使用nginx打开index.php

Dam*_*ati 20 nginx

我的服务器定义有什么问题?如果我尝试访问"www.testing.com",我会得到一个二进制文件而不是index.php,相反,如果我尝试访问"testing.com",我会得到index.php.

我已经尝试将servername设置为:

servername testing.com;
servername testing.com www.testing.com;
servername testing.com www.testing.com *.testing.com;
Run Code Online (Sandbox Code Playgroud)

相同的行为:我无法通过"testing.com"获得带有"www.testing.com"的index.php.(当然,测试网不是我的只是举例).

    user              nginx;
    worker_processes  4;
    error_log         /var/log/nginx/error.log warn;
    pid               /var/run/nginx.pid;

    events {
         worker_connections  1024;
    }


    http {
         include      /etc/nginx/mime.types;
         default_type  text/plain;

         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;

         fastcgi_intercept_errors    on;
         sendfile                    on;
         keepalive_timeout           65;
         gzip                        on;
         index                       index.php index.html index.htm;

         server {
              listen 80;
              server_name www.testing.com;
              root /home/vhosts/testing;

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

        location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
                  expires max;
                  add_header Pragma public;
                  add_header Cache-Control "public, must-revalidate, proxy-revalidate";
              }

        location ~* \.php$ {
                 try_files $uri =404;
                 include fastcgi.conf;
                 fastcgi_pass  127.0.0.1:9000;
              }
         }
    }
Run Code Online (Sandbox Code Playgroud)

Ser*_*aev 20

首先你需要检查你的php-fpm设置(也许你在php-fpm配置中使用套接字连接而不是端口)并默认在你的位置添加索引"/"

location / {
    index index.php index.html index.htm;
    try_files $uri $uri/ =404;
}
Run Code Online (Sandbox Code Playgroud)

  • 不工作。浏览器仍然尝试下载文件(*nginx* 是否重新启动) (2认同)

Ali*_*izi 8

添加fastcgi_index index.php;location ~* \.php$

location ~* \.php$ {
    try_files $uri =404;
    include fastcgi.conf;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index  index.php;
}
Run Code Online (Sandbox Code Playgroud)


Tim*_*ade -3

您可以有多个服务器名称行,它将在所有服务器上设置一个 VHOST。