Httpd SetHandler: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 12: Line 12:


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

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>