Следующий код конфигурации правила 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