nginx 配置

modehistory, nginx 配置如下

  1. server
  2. {
  3. listen 80;
  4. # 域名
  5. server_name xxx.hefeiapp.cn;
  6. # 添加上这个配置
  7. location / {
  8. try_files $uri $uri/ @router;
  9. index index.html;
  10. }
  11. location @router {
  12. rewrite ^.*$ /index.html last;
  13. }
  14. # 反向代理 管理端api , echo-manager 是管理端api的地址
  15. location /echo-manager/{
  16. proxy_set_header Host $http_host;
  17. proxy_set_header X-Real-IP $remote_addr;
  18. proxy_set_header REMOTE-HOST $remote_addr;
  19. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  20. proxy_pass http://127.0.0.1:9393/echo-manager/;
  21. }
  22. }
  1. # web 页面
  2. location /{
  3. root /www/wwwroot/test.pro.songguoxin.com;
  4. index index.html index.php;
  5. # 处理刷新404问题
  6. try_files $uri $uri/ /index.html;
  7. }

宝塔配置

网站
image.png

配置文件
image.png

加入以下代码

  1. ## 添加上这个配置
  2. location / {
  3. try_files $uri $uri/ @router;
  4. index index.html;
  5. }
  6. location @router {
  7. rewrite ^.*$ /index.html last;
  8. }

什么是伪静态?

就是没有问号的静态网址
image.png