Nginx:expires 标头变为 404

Nginx:expires 标头变为 404

我在使用过期标头时遇到了问题。当我设置过期并通过浏览器访问文件时,它变成了“未找到 404”。

这是我在 nginx.conf 上的虚拟服务器设置

server {
listen 80;
server_name blgourl.com www.blogourl.com

  location / {
      root    /data/file/static/blogourl;
      index   index.html index.htm index.php;
  }

  location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico)$ {
      expires 30d;
      add_header Pragma public;
      add_header Cache-Control "public";
  }


  location ~* \.php$ {
  ssi on;
  root /data/file/static;
  fastcgi_param HTTP_USER_AGENT  $http_user_agent;
  fastcgi_index   index.php;
  #fastcgi_pass    127.0.0.1:9000;
  #fastcgi_pass   unix:/var/run/php-fpm/php-fpm.sock;
  fastcgi_pass   unix:/var/run/php-fpm.sock;
  include         fastcgi_params;
  fastcgi_param   SCRIPT_FILENAME    /data/file/static/blogourl$fastcgi_script_name;
  fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;

  }

}

答案1

正如 Alexey Ten 所说,在 location 中使用 root 是不好的,因为你必须在每个 location 指令中定义参数。如果你忘记在某个 location 中root添加 root ,nginx 会设置rootroot 默认 /etc/nginx/html

相反,你必须定义您所在位置之外的 root例如在服务器指令中。root每当您的根目录发生变化时,您都可以添加您的位置。例如在您的配置中,您可以覆盖root里面的参数location ~* \.php$

也可以看看这次讨论关于根内部位置问题。

你的配置应该是

  root    /data/file/static/blogourl;
  location / {
      index   index.html index.htm index.php;
  }

  location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico)$ {
      expires 30d;
      add_header Pragma public;
      add_header Cache-Control "public";
  }


  location ~* \.php$ {
      ssi on;
      root /data/file/static;
      fastcgi_param HTTP_USER_AGENT  $http_user_agent;
      fastcgi_index   index.php;
      #fastcgi_pass    127.0.0.1:9000;
      #fastcgi_pass   unix:/var/run/php-fpm/php-fpm.sock;
      fastcgi_pass   unix:/var/run/php-fpm.sock;
      include         fastcgi_params;
      fastcgi_param   SCRIPT_FILENAME    /data/file/static/blogourl$fastcgi_script_name;
      fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;

  }

相关内容