Nginx在缓存的html文件上返回404

Nginx在缓存的html文件上返回404,nginx,Nginx,我尝试在没有索引页面的所有.html文件上添加缓存,但每次做一些更改时,我的文件都会转到404未找到页面 这是我在默认配置中所做的,没有任何更改,也没有工作 server { listen 80; server_name site.net; root /storage/www/site.net; access_log /var/log/nginx/site.net.access.log; error_log /var/log/nginx/site.net.lo

我尝试在没有索引页面的所有.html文件上添加缓存,但每次做一些更改时,我的文件都会转到404未找到页面

这是我在默认配置中所做的,没有任何更改,也没有工作

server {
listen 80;
    server_name site.net;
    root /storage/www/site.net;

    access_log /var/log/nginx/site.net.access.log;
    error_log  /var/log/nginx/site.net.log info;

    index index.php;
error_page  404 = /404.php;

    if ($host = 'www.site.net' ) {
    rewrite  ^/(.*)$  http://site.net/$1  permanent;
    }
location ~ /\. {
    deny all;
    access_log off;
    log_not_found off;
}

    location = /favicon.ico {
            log_not_found off;
            access_log off;
    }

    location = /robots.txt {
            allow all;
            log_not_found off;
            access_log off;
    }

    location ~*  \.(jpg|jpeg|png|gif|ico|css|js)$ {
       expires 365d;
     }

    # This matters if you use drush
    location = /backup {
            deny all;
    }

    # Very rarely should these ever be accessed outside of your lan
    location ~* \.(txt|log)$ {
            allow 127.0.0.1;
            deny all;
    }

    location ~ \..*/.*\.php$ {
            return 403;
    }

    location / {
            # This is cool because no php is touched for static content
            try_files $uri $uri/ @rewrite;
            expires max;
    }
location ~ ^/sites/.*/private/ {
        access_log  off;
        internal;
    }

    location @rewrite {
            # Some modules enforce no slash (/) at the end of the URL
            # Else this rewrite block wouldn't be needed (GlobalRedirect)
            rewrite ^/(.*).html$ /index.php?s=$1;
    }

    location ~ \.php$ {
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_intercept_errors on;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
    }}
试试这个:

location @rewrite {
        # Some modules enforce no slash (/) at the end of the URL
        # Else this rewrite block wouldn't be needed (GlobalRedirect)
        rewrite ^/(.*).html$ /index.php?s=$1 last;
}

访问日志/错误日志是什么say@MohammadAbuShady在日志中,我看不到任何问题,只是我告诉过你,我的所有html文件返回404错误页面,但索引页面工作。。