部署前端刷新页面出现404问题

问题1:web前端部署在tomcat下,登录进入后刷新页面出现404

解决办法:项目下创建WEB-INF/web.xml。

部署前端刷新页面出现404问题_第1张图片

 web.xml内容





  Welcome to Tomcat
  
     Welcome to Tomcat
  
  
  404
  /index.html
  


问题2: 部署在Nginx下,指令页面访问404

解决办法:编辑Nginx配置文件,nginx/conf/nginx.conf,加入红色加粗部分。

重启服务,进入nginx/sbin目录下,执行 ./nginx -s reload

listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html;
        }
 

你可能感兴趣的:(前端,nginx,tomcat)