Submitted by: Markus Schiegl <ms schiegl.com>
* modules/mappers/mod_rewrite.c
(is_absolute_uri): Recognize fcgi:// urls.
* CHANGES: Note change.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@405625
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.3.0
[Remove entries to the current 2.0 and 2.2 section below, when backported]
+ *) Add support for fcgi:// proxies to mod_rewrite.
+ [Markus Schiegl <ms schiegl.com>]
+
*) Tidy up scoreboard [Chris Darroch <chrisd pearsoncmg.com> ]
*) core, mod_http: add optional 'scheme://' prefix to ServerName directive.
if (!strncasecmp(uri, "tp://", 5)) { /* ftp:// */
return 6;
}
+ if (!strncasecmp(uri, "cgi://", 6)) { /* fcgi:// */
+ return 7;
+ }
break;
case 'g':