cfischer Asked: 2009-10-09 11:24:43 +0800 CST2009-10-09 11:24:43 +0800 CST 2009-10-09 11:24:43 +0800 CST How to block PROPFIND (or any other method) on Apache 772 How can I block PROPFIND (or other methods, such as PUT or DELETE) on my whole site with Apache? linux 2 Answers Voted Best Answer dialt0ne 2009-10-09T11:39:40+08:002009-10-09T11:39:40+08:00 Use the Limit or LimitExcept directive. One example might be: <Location /> <LimitExcept GET POST HEAD> Order Allow,Deny Deny from all Satisfy all </LimitExcept> </Location> Guest 2018-11-30T15:12:03+08:002018-11-30T15:12:03+08:00 Simpler. Limit just one method instead of trying your shot in the dark about what methods are really needed to except. <Limit PROPFIND> Order Deny,Allow Deny from all </Limit>
Use the Limit or LimitExcept directive. One example might be:
Simpler. Limit just one method instead of trying your shot in the dark about what methods are really needed to except.