Files
x_admin/docs/admin/nginx配置.md
2024-11-04 23:19:03 +08:00

314 B

nginx配置

前端页面使用history模式需要重定向


location / {
    index /index.html;
    try_files $uri $uri/ /index.html;
}
# 找不到静态文件返回404
location ~* \.(?:html|css|js|png|jpg|jpeg|gif|webp|pdf|mp4|mp3|aac|ico|svg|woff|woff2|ttf|eot)$ {
    try_files $uri =404;
}