VUE前端发送post请求给Nginx,访问静态资源405不被允许 解决方案: 在Nginx服务器的接收请求路径location中添加以下代码: location = /a.html { root html; error_page 405 =200 http:// h o s t host hostrequest_uri;//添加这一行 }