mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-12-24 08:12:55 +08:00
16 lines
314 B
Markdown
16 lines
314 B
Markdown
|
|
# nginx配置
|
|
|
|
|
|
## 前端页面使用history模式需要重定向
|
|
```nginx
|
|
|
|
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;
|
|
}
|
|
``` |