From 290a9cad3f9b860b6b191aeeb1cc8af2929f006a Mon Sep 17 00:00:00 2001
From: Mike Rumph This module makes it easy to restrict what HTTP methods can be
-used on an server. The most common configuration would be:Summary
<Location "/"> AllowMethods GET POST OPTIONS @@ -62,9 +62,9 @@ used on an server. The most common configuration would be:- Module: mod_allowmethods The HTTP-methods are case sensitive, and are generally as per -RFC given in upper case. The GET and HEAD methods are treated as -equivalent. The
reset
keyword can be used +The HTTP-methods are case sensitive and are generally, as per +RFC, given in upper case. The GET and HEAD methods are treated as +equivalent. The
reset
keyword can be used to turn offmod_allowmethods
in a deeper nested context:<Location "/svn"> @@ -73,7 +73,7 @@ turn offmod_allowme
diff --git a/docs/manual/mod/mod_allowmethods.xml.fr b/docs/manual/mod/mod_allowmethods.xml.fr index 3643c3ae2d..e0124dfea1 100644 --- a/docs/manual/mod/mod_allowmethods.xml.fr +++ b/docs/manual/mod/mod_allowmethods.xml.fr @@ -1,7 +1,7 @@ - + -- 2.40.0Caution
-The TRACE method can not be denied by this module, +
The TRACE method cannot be denied by this module; use
TraceEnable
instead.