try_files – 永夜 https://www.shuijingwanwq.com 没有不值得去解决的问题,也没有不值得去学习的技术! Sun, 31 May 2026 07:48:01 +0000 zh-Hans hourly 1 https://wordpress.org/?v=7.0 部署前端代码时,基于 Nginx 配置,一旦刷新则会响应 404 的解决 https://www.shuijingwanwq.com/2024/01/24/8413/ https://www.shuijingwanwq.com/2024/01/24/8413/#respond Wed, 24 Jan 2024 01:57:21 +0000 https://www.shuijingwanwq.com/?p=8413 浏览量: 78 1、在进入前端页面后,点击一些链接,网址会发生变化,此时响应皆是 200。但是一旦刷新整个页面,则会响应 404。如视频1 2、查看 Nginx 的错误日志,添加一行:try_files $uri $uri/ /index.html;


2024/01/04 10:19:17 [error] 23408#17516: *244 CreateFile() "E:/wwwroot/object/dist/apps/admin/order/order-center/orders" failed (3: The system cannot find the path specified), client: 127.0.0.1, server: object.local, request: "GET /order/order-center/orders HTTP/1.1", host: "object.local"




    index index.html;

	try_files $uri $uri/ /index.html;


3、再次刷新整个页面,不再响应 404。]]>
https://www.shuijingwanwq.com/2024/01/24/8413/feed/ 0
在 Docker 容器中,Nginx PHP 环境中响应 404 Not Found 的分析与解决 https://www.shuijingwanwq.com/2019/10/21/3576/ https://www.shuijingwanwq.com/2019/10/21/3576/#respond Mon, 21 Oct 2019 06:11:09 +0000 http://www.shuijingwanwq.com/?p=3576 浏览量: 135

1、在 Docker 容器中,Nginx PHP 环境中响应 404 Not Found,打开一个映射至 PHP 文件的路由,如图1

在 Docker 容器中,Nginx PHP 环境中响应 404 Not Found,打开一个映射至 PHP 文件的路由

图1

<html>
 
<head>
    <title>404 Not Found</title>
</head>
 
<body>
    <center>
        <h1>404 Not Found</h1>
    </center>
    <hr>
    <center>nginx</center>
</body>
 
</html>

2、打开一个映射至 HTML 文件的路由,响应 200,如图2

打开一个映射至 HTML 文件的路由,响应 200

图2

3、Nginx 的配置文件,内容如下


server {
    listen 80; ## listen for ipv4
    server_name api.pcs.wjdev.chinamcloud.cn;
    charset utf-8;

    root /mcloud/www/pcs-api/api/web;
    index index.php;
    location / {
        # 如果找不到真实存在的文件,把请求分发至 index.php
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location / {
        rewrite /interace /abc;
    }

    location /abc {
        return 200 '{"msg":"success"}';
    }


    # uncomment to avoid processing of calls to non-existing static files by Yii
    #location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
    #    try_files $uri =404;
    #}
    #error_page 404 /404.html;

    # deny accessing php files for the /assets directory
    location ~ ^/assets/.*\.php$ {
        deny all;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

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

    location /nginx_status {
        stub_status on;
        access_log off;
        allow 127.0.0.1;
        deny all;
    }

    location ~ ^/(status|ping)$ {
        include fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
        access_log off;
        allow 127.0.0.1;
        allow 10.42.0.0/16;
        allow 10.244.0.0/8;
        allow 192.168.0.0/8;
        allow 172.17.0.0/8;
        deny all;
    }
}


4、发现配置文件中存在重复的内容(location / { }),进而导致第一个配置项被覆盖,决定删除掉第二个配置项



    location / {
        rewrite /interace /abc;
    }

    location /abc {
        return 200 '{"msg":"success"}';
    }




server {
    listen 80; ## listen for ipv4
    server_name api.pcs.wjdev.chinamcloud.cn;
    charset utf-8;

    root /mcloud/www/pcs-api/api/web;
    index index.php;
    location / {
        # 如果找不到真实存在的文件,把请求分发至 index.php
        try_files $uri $uri/ /index.php$is_args$args;
    }

    # uncomment to avoid processing of calls to non-existing static files by Yii
    #location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
    #    try_files $uri =404;
    #}
    #error_page 404 /404.html;

    # deny accessing php files for the /assets directory
    location ~ ^/assets/.*\.php$ {
        deny all;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

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

    location /nginx_status {
        stub_status on;
        access_log off;
        allow 127.0.0.1;
        deny all;
    }

    location ~ ^/(status|ping)$ {
        include fastcgi_params;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
        access_log off;
        allow 127.0.0.1;
        allow 10.42.0.0/16;
        allow 10.244.0.0/8;
        allow 192.168.0.0/8;
        allow 172.17.0.0/8;
        deny all;
    }


5、打开一个映射至 PHP 文件的路由,响应 200,符合预期,如图3

打开一个映射至 PHP 文件的路由,响应 200,符合预期

图3

]]>
https://www.shuijingwanwq.com/2019/10/21/3576/feed/ 0