From c47cb1bfa5026eec21d862ee69afb8a2db14a59c Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Wed, 15 Apr 2015 20:56:55 +0000 Subject: [PATCH] Correct a regex so that it doesn't match the file named '.cgi' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673954 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_mime.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/mod/mod_mime.xml b/docs/manual/mod/mod_mime.xml index 522321376a..171964a47e 100644 --- a/docs/manual/mod/mod_mime.xml +++ b/docs/manual/mod/mod_mime.xml @@ -144,7 +144,7 @@ module="mod_mime_magic">MimeMagicFile Configure handler based on final extension only -<FilesMatch "\.cgi$"> +<FilesMatch ".+\.cgi$"> SetHandler cgi-script </FilesMatch> -- 2.50.1