mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-18 22:15:04 +08:00
314 B
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;
}