mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2026-04-24 01:59:46 +08:00
11 lines
155 B
Markdown
11 lines
155 B
Markdown
|
|
# nginx配置
|
|
|
|
|
|
## 前端页面使用history模式需要重定向
|
|
```nginx
|
|
location / {
|
|
index /index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
``` |