vue在history的路由模式下,刷新后界面报404
程序员文章站
2022-03-21 08:04:08
需要配置下nginx,位置在/conf/vhosts/*.conf,将当前目录下的所有conf都修改一下最好server { listen 80; server_name agwenbi.vip; root "C:/phpstudy_pro/WWW/agwenbi.vip/iview"; location / { try_files $uri $uri/ @router;...
需要配置下nginx,位置在/conf/vhosts/*.conf,将当前目录下的所有conf都修改一下最好
server {
listen 80;
server_name agwenbi.vip;
root "C:/phpstudy_pro/WWW/agwenbi.vip/iview";
location / {
try_files $uri $uri/ @router;
index index.html;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
location @router {
rewrite ^.*$ /index.html last;
}
gzip on;
gzip_disable “MSIE [1-6].(?!.*SV1)”;
gzip_http_version 1.1;
gzip_vary on;
gzip_proxied any;
gzip_min_length 5000;
gzip_buffers 16 8k;
gzip_comp_level 6;
gzip_types text/css text/xml text/plain text/javascript application/javascript application/json application/xml application/rss+xml application/xhtml+xml;
}
本文地址:https://blog.csdn.net/Ag_wenbi/article/details/107166890
上一篇: Angular.js跨controller实现参数传递的两种方法
下一篇: MVC与三层架构
推荐阅读
-
VUE的history模式下除了index外其他路由404报错解决办法
-
vue router嵌套路由在history模式下刷新无法渲染页面问题的解决方法
-
vue下history模式刷新后404错误解决方法
-
vue在history的路由模式下,刷新后界面报404
-
vue项目打包后,页面一片空白,刷新时404,路由history模式,问题解决!
-
vue路由在history模式下刷新时渲染页面无反映的处理方法
-
vue路由history模式刷新页面时出现404问题的两种解决方法
-
VUE的history模式下除了index外其他路由404报错解决办法
-
vue路由在history模式下刷新时渲染页面无反映的处理方法
-
vue路由history模式刷新页面时出现404问题的两种解决方法