当前位置: 首页 > 知识库问答 >
问题:

nginx位置404未找到

陈泰宁
2023-03-14

这是我的nginx配置文件。

默认情况下。conf,第一个位置用于访问/usr/share/nginx/html目录,当我访问http://47.91.152.99.但是,当我为目录/usr/share/nginx/public directory添加一个新位置时,nginx会在我访问时返回404页http://47.91.152.99/test.

那么,到底是怎么回事呢?我误用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;
    }
}

共有3个答案

马坚
2023-03-14

当你的应用程序是vuejs时,你需要这样写,可以防止404,注意双重/测试/

   location ^~/test/ {
       alias /usr/local/soft/vuejs/;
       try_files $uri $uri/ /test/index.html;
    }
汪才英
2023-03-14
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部分地根据配置中的位置匹配位置块。理想情况下,你会把你现在拥有的东西颠倒过来。nginx配置中的位置块将更高。为此,位置=/50x。html也会向上移动。秩序是

  1. 精确匹配=
  2. 正向匹配^ ~/
  3. 区分大小写的正则表达式~/
  4. 不区分大小写的正则表达式~*
  5. 路径匹配/

更多关于nginx位置优先级的信息。此外,您还可以随时查看官方文档。位置块的nginx文档http://nginx.org/en/docs/http/ngx_http_core_module.html#location

步炯
2023-03-14

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

 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;
     }
 }

你还应该考虑一件事...位置块越“精确”,它应该驻留在你的配置中就越高。像位置=/50x.html。在一个完美的世界里,这将被设置在顶部,就在一般服务器块设置之后。

希望能有帮助。

 类似资料:
  • 我试图让Nginx PHP5-FPM Drupal 7正常工作,但当我访问我的域时,我发现“404”没有找到。 我的配置基于:-https://github.com/perusio/drupal-with-nginx - https://github.com/perusio/php-fpm-example-config /etc/nginx/nginx。形态 ###################

  • 我创建了一个部署、一个服务和一个入口,以便能够从我的主机访问NGINX web服务器,但我一直没有找到404。经过长时间的故障排除,我已经到了一个非常欢迎帮助的地步。 步骤和相关yaml文件如下所示。 启用Minikube NGINX入口控制器 minikube插件支持入口 创建NGINX web服务器部署 创建ClusterIP服务以管理对POD的访问 创建入口以从集群外部访问服务 测验 连接到

  • 我使用的是Windows 7 64位计算机,目标SDK版本是23。

  • 我最近创建了一个新的本地repo,并从我们的远程存储库中提取了一些代码。 当我打开项目时,我在控制台中收到一条消息: 我按照这里的说明设置环境变量(Im in a Mac),并检查了我的local.properties: 所以,这两件事都解决了,我仍然得到这个错误。我已经搜索过了,但是没有一个解决方案对我有效。 有什么帮助吗?非常感谢。 编辑: 这只发生在一个项目中。其余的项目运行良好。

  • 我正在尝试将我的android项目从Eclipse迁移到MAC中的android Studio v1.0.1 如果我创建一个新项目,一切正常,但如果我从Eclipse导入一个项目,则会出现以下错误: 错误:配置项目“MyProject”时出现问题。未找到SDK位置。使用sdk定义位置。本地目录。属性文件或使用ANDROID_HOME环境变量。 我的local.properties文件已经有了SDK

  • 问题内容: 我已经测试了一段时间的地理位置查询,到目前为止,我还没有发现任何问题。 我试图搜索给定半径内的所有城市,通常是使用城市坐标搜索城市周围的城市,但是最近我尝试在城市周围搜索,发现该城市本身未归还。 我在数据库中摘录了以下城市: 但是,当我在Saint-R茅米市内运行查询时,出现以下查询… 我得到这些结果: 搜索中缺少圣鲁茅米镇。 所以我尝试了一个修改后的查询,希望得到更好的结果: 但我得