Httpd SetHandler: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
=Internal=
=Internal=


* [[httpd Configuration#Directives]]
* [[httpd Configuration#Directives|httpd Configuration]]


=Overview=
=Overview=
Line 17: Line 17:
</pre>
</pre>


</pre>
<pre>
<FilesMatch "\.php$">
<FilesMatch "\.php$">
     SetHandler application/x-httpd-php
     SetHandler application/x-httpd-php
</FilesMatch>
</FilesMatch>
</pre>
</pre>

Latest revision as of 15:53, 10 January 2017

External

Internal

Overview

Forces all matching files to be processed by the specified handler.

<Location "/status">
  SetHandler server-status
</Location>
<FilesMatch "\.php$">
    SetHandler application/x-httpd-php
</FilesMatch>