美文网首页我爱编程
豆瓣图书搜索接口 405 not allowed 报错处理

豆瓣图书搜索接口 405 not allowed 报错处理

作者: jlnbda3488375 | 来源:发表于2018-05-24 15:05 被阅读17次

    亲测可行,感谢https://blog.csdn.net/zy799894671/article/details/38045513


    server
    {
    listen 80;
    server_name XXXX;
    index index.html index.htm index.php;
    root /XXXX;
    location /
    {
    root /XXXX;
    error_page 405 =200 http://$host$request_uri;
    }

    location ~ .*.php?$
    {
    include conf/fcgi.conf;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    }
    }

    相关文章

      网友评论

        本文标题:豆瓣图书搜索接口 405 not allowed 报错处理

        本文链接:https://www.haomeiwen.com/subject/ejdsjftx.html