Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有个问题。当我发送 DELETE 请求时,我的网络服务器会收到 403 响应。我不想删除请求中的东西,我只需要知道使用的方法是删除。如何配置我的网络服务器不再发送那些 403 消息?我不希望启用 WebDAV 或类似的东西。我只想知道请求方法是否为 DELETE(在我的 php 文件中,但由于 403 而没有执行)。
从我读到的应该是这样的:
<Limit DELETE> Order deny,allow Allow from all </Limit>