Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A9470C171 for ; Fri, 11 May 2012 00:35:36 +0000 (UTC) Received: (qmail 24033 invoked by uid 500); 11 May 2012 00:35:36 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 23975 invoked by uid 500); 11 May 2012 00:35:36 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 23968 invoked by uid 99); 11 May 2012 00:35:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 May 2012 00:35:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 May 2012 00:35:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 863E52388865; Fri, 11 May 2012 00:35:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1336982 - /httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml Date: Fri, 11 May 2012 00:35:15 -0000 To: cvs@httpd.apache.org From: rbowen@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120511003515.863E52388865@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rbowen Date: Fri May 11 00:35:15 2012 New Revision: 1336982 URL: http://svn.apache.org/viewvc?rev=1336982&view=rev Log: Add example from the php docs. Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml?rev=1336982&r1=1336981&r2=1336982&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml (original) +++ httpd/httpd/branches/2.4.x/docs/manual/mod/core.xml Fri May 11 00:35:15 2012 @@ -3974,6 +3974,15 @@ handler </Location> +

You could also use this directive to configure a particular + handler for files with a particular file extension. For example:

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

You can override an earlier defined SetHandler directive by using the value None.