未找到nginx位置404

时间:2016-12-12 10:58:29

标签: nginx location http-status-code-404

这是我的nginx配置文件。

在default.conf上,第一个位置用于访问/ usr / share / nginx / html目录,当我访问http://47.91.152.99时可以。 但是当我为目录/ usr / share / nginx / public目录添加一个新位置时,当我访问http://47.91.152.99/test时,nginx会返回404页面。

那么,怎么回事?我是否滥用了nginx的指令?

/etc/nginx/nginx.conf

user  nginx;
worker_processes  1;

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  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;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}


/etc/nginx/conf.d/default.conf
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    location ^~ /test/ {
        root /usr/share/nginx/public;
        index index.html index.htm;
    }
    #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;
    }
}

4 个答案:

答案 0 :(得分:13)

以下错误的阻止(在您的情况下);

 location ^~ /test/ {
     root /usr/share/nginx/public;
     index index.html index.htm;
 }

告诉nginx在文件夹(root)/ usr / share / nginx / public中查找目录'test'。如果该根目录中没有“test”文件夹,它将返回404.为了解决您的问题,我建议您尝试使用别名而不是 root 。像这样:

 location ^~ /test/ {
     alias /usr/share/nginx/public;
     index index.html index.htm;
 }

另外,只是为了踢,一般可以设置索引指令,所以你不必一直重写它......就像这样;

 server {
     listen       80;
     server_name  localhost;

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

     error_page   500 502 503 504  /50x.html;

     location / { }

     location ~^/test/ {
         alias /usr/share/nginx/public;
     }

     location = /50x.html {
         root   /usr/share/nginx/html;
     }
 }

你还应该考虑一件事......位置块越“精确”,它应该存在的配置越高。就像location = /50x.html一样。在一个完美的世界中,这将在通用服务器块设置之后立即设置。

希望它有所帮助。

答案 1 :(得分:3)

由根指令引起的错误

location ^~ /test/ {
    root /usr/share/nginx/public;
    index index.html index.htm;
}

使用别名指令修复

 location ^~ /test/ {
     alias /usr/share/nginx/public;
     index index.html index.htm;
 }

其他改进

额外提示:可以设置index指令,这样您就不必重写它。

server {
    listen       80;
    server_name  localhost;

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

    error_page   500 502 503 504  /50x.html;

    location / { }

    location ~^/test/ {
        alias /usr/share/nginx/public;
    }

    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

nginx部分地根据配置中的位置来匹配Location块。理想情况下,您应该反转现在的状态。 Nginx配置中的位置块会更高。为此,location = /50x.html也将向上移动。订单是

  1. 完全匹配=
  2. 向前比赛^〜/
  3. 区分大小写的正则表达式〜/
  4. 不区分大小写的正则表达式〜*
  5. 路径匹配/

有关nginx location priority的更多信息。另外,您随时可以查看官方文档。位置块http://nginx.org/en/docs/http/ngx_http_core_module.html#location

的Nginx文档

答案 2 :(得分:1)

当您的应用是vuejs时,您需要这样编写,可以防止404,请注意加倍/ test /

   location ^~/test/ {
       alias /usr/local/soft/vuejs/;
       try_files $uri $uri/ /test/index.html;
    }

答案 3 :(得分:0)

就我而言,如果您要托管多个站点,请检查server_name可能指向错误。看看吧。