如何允许 Apache PUT 方法进入目录

如何允许 Apache PUT 方法进入目录

我想启用 Apache 2.4.7 以允许 PUT 到特定目录。以下配置在 PUT 请求后在访问日志中给出 405 错误代码。

<VirtualHost *:80>
  DocumentRoot /var/www/default
  CustomLog /var/log/apache2/access_log common

  <Directory /var/www/default/put>
    <Limit PUT>
      Order Allow,Deny
      Allow from all
    </Limit>
  </Directory>
</VirtualHost>

相关内容