Nginx 位置块不提供静态文件

Nginx 位置块不提供静态文件

我正在尝试从我的位置块获取服务器数据。

 location ~ ^/(archivefiles) {
     root /web/htdocs/archivefiles/;
  }

当用户访问时, http://www.example.com/archivefiles/sports/football/1981.pdf页面出现错误。我在位置块中尝试了以下组合,但没有成功。

root /web/htdocs/archivefiles;
root /web/htdocs/archivefiles/$1;
root /web/htdocs/$1;

我已经看过文档看起来好像我使用的一切都是正确的。

相关内容