1

我正在使用 Nginx 而我没有使用 Apache。所以需要一段Nginx代码来解决前端静态资源的加载问题。

我的问题与类似,但我不是 Apache。我没有在“webserver-configs”文件夹中找到我想要的东西。

以下代码似乎不起作用。

location ~* \.(png|gif|jpg|jpeg|svg|ico|css|js|woff|ttf|otf|woff2|eot)$ {
  index index.php;
  try_files $uri $uri/member/public/asset-raw/ member/public/index.php?$query_string;
}
4

1 回答 1

0

下面的Nginx规则配置代码可以正确解决上述问题。

✔ 经过我的实际测试。

  ## Begin - UserFrosting Caching static files
  location ~* \/member\/.*\.(png|gif|jpg|jpeg|svg|ico|css|js|woff|ttf|otf|woff2|eot|json)$ {
    index index.php;
    try_files $uri $uri/ /member/public/index.php?$query_string;
  }
  ## End - UserFrosting Caching static files

  ## Begin - Index
  ## for subfolders, simply adjust:
  ## `location /subfolder {`
  ## and the rewrite to use `/subfolder/index.php`
  location /member/public/ {
    index index.php;
    try_files $uri $uri/ /member/public/index.php?$query_string;
  }
  ## End - Index
于 2019-05-16T11:06:53.930 回答