您好,在阿里云轻量服务器上用wordpress 建立了两个网站,其中一个设置自定义主页时提示: 405 Method Not Allowed The requested method is not allowed for the URL. Sorry for the inconvenience. Please report this message and include the following information to us. Thank you very much!
URL: http://www.lamianshitang.com/?customize_changeset_uuid=b8c5999d-7803-4afb-badd-66e7d98ae2fc&customize_theme=Avada&customize_messenger_channel=preview-2&customize_autosaved=on Server: iz2ze6p107eu06cmq22z5bz Date: 2019/10/23 10:37:17 Powered by Tengine
在阿里云社区上说“比如web程序需要使用到POST方法,则在web服务上开启该方法后重试即可”
请问在哪里开启?
建议购买ECS,宝商科技有最新阿里云ECS镜像免费版本WordPress5.3
WordPress LAMP: https://market.aliyun.com/products/53398003/cmjj033076.html
WordPress WAMP: https://market.aliyun.com/products/53398003/cmjj033083.html
Nginx 405 not allowed解决办法 Apache、IIS、Nginx等绝大多数web服务器,都不允许静态文件响应POST请求,否则会返回“HTTP/1.1 405 Method not allowed”错误。
server { listen 80; server_name 域名;
location /{ root /www/文件目录; index index.html index.htm index.php; error_page 405 =200 http://$host$request_uri; } }
1 2 3 4 5 6 7 8 9 10 server { listen 80; server_name 域名;
location /{ root /www/文件目录; index index.html index.htm index.php; error_page 405 =200 http://$host$request_uri; } }
答案来源网络,供参考,希望对您有帮助
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。