nginx 配置
mode
为 history
, nginx 配置如下
server
{
listen 80;
# 域名
server_name xxx.hefeiapp.cn;
# 添加上这个配置
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router {
rewrite ^.*$ /index.html last;
}
# 反向代理 管理端api , echo-manager 是管理端api的地址
location /echo-manager/{
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:9393/echo-manager/;
}
}
# web 页面
location /{
root /www/wwwroot/test.pro.songguoxin.com;
index index.html index.php;
# 处理刷新404问题
try_files $uri $uri/ /index.html;
}
宝塔配置
网站
配置文件
加入以下代码
## 添加上这个配置
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router {
rewrite ^.*$ /index.html last;
}
什么是伪静态?
就是没有问号的静态网址