问题
正常访问Http接口时正常,但通过nginx访问却出现405 not allowed的提示。
解决方案
在nginx的站点配置中添加以下error_page 405 =200 $request_uri;这句即可。
server {
listen 9095;
server_name localhost;
#前端网站
location / {
root D:\dqc\portal\portal-vue; # 静态页面根目录
index index.html;#默认首页
error_page 405 =200 $request_uri;
}
}
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。