SetHandler
SetHandler handler-name directory, .htaccess, location
This
does the same thing as AddHandler
, but applies the
transformation specified by handler-name
to all files in the <Directory>
,
<Location>
, or
<Files>
section in which it is placed or in
the .htaccess directory. For instance, in Chapter 10, we write:
<Location /status> <Limit get> order deny,allow allow from 192.168.123.1 deny from all </Limit> SetHandler server-status </Location>