Back to HTTP Check Tool
4xx · Client Error

405Method Not Allowed

请求方法对目标资源不适用。

What is HTTP 405?

405 Method Not Allowed 表示请求使用的 HTTP 方法不被该资源支持。服务器必须在响应中包含 Allow 头,列出支持的方法。

Example

POST /api/users/42 (read-only) → 405 Method Not Allowed

Check a URL in real-time

Use our HTTP ping tool to check the actual status code of any URL.

Try httping.io →

Common Use Cases

  • 对只读端点使用 POST
  • DELETE 不被支持
  • 在集合 URL 上使用 PUT

Quick Facts

Code405
Category4xx
TypeClient Error

Related 4xx Codes