使用 nginx 提供静态页面 - 获取 404

使用 nginx 提供静态页面 - 获取 404

我正在尝试使用 nginx 在我的网站上设置静态页面。该文件夹中有一个index.html文件以及一些静态文件。

目录结构如下所示

olx
--static
--fonts
--index.html

这就是我尝试提供该index.html页面的方式。

location /olx {
    root /mypath/olx;

    default_type "text/html";
    try_files  $uri $uri.html $uri/index.html index.html;
}

这导致出现 404 错误。有什么帮助吗?

答案1

问题在于:

location /olx {
root /mypath/olx;

更改为:

location /olx {
root /mypath;

相关内容