出现nginx 405 Not Allowed错误的解决方法

1
nano nginx.conf

添加以下内容:

1
2
3
4
5
6
7
8
9
10
11
12
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 404 /404.html;
error_page 403 /403.html;
# To allow POST on static pages 允许静态页使用POST方法
error_page 405 =200 $uri;
}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注