首页 » 技术分享 » nginx 405 not allowed问题解决方法

nginx 405 not allowed问题解决方法

 

在location中增加如下一行内容error_page 405 =200  $request_uri; 如下所示

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   /mnt/svnhouse/publish;
            index  index.html;
            error_page 405 =200  $request_uri;
        }

 

转载自原文链接, 如需删除请联系管理员。

原文链接:nginx 405 not allowed问题解决方法,转载请注明来源!

0