About the link problem of POST request

requested link: http://www..com/?&
link can enter the page normally and does not affect the function;
but log monitoring with Fundebug will report an error of 405.

What"s the problem with

?

Jun.08,2021

you can learn about http status code
405

the request method specified in the request line cannot be used to request the corresponding resource. The response must return an Allow header to indicate a list of request methods that are acceptable to the current resource. In view of the fact that the PUT,DELETE method will write to the resources on the server, most web servers do not support or do not allow the above request method by default, and will return a 405 error for such requests.

Method Not Allowed has told you that methods are not allowed

Menu