nginx vue项目路由无法访问nginx配置

  • Post author:
  • Post category:vue


	 location / {
			   try_files $uri $uri/ @router;
			   index index.html;
		 }

		location @router {
			   rewrite ^.*$ /index.html last;
		}



版权声明:本文为qq_34936628原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。