* [EMAIL PROTECTED] wrote:
> Index: mod_rewrite.c
> ===================================================================
...
> @@ -2816,6 +2832,13 @@
> }
> else if (!strncasecmp(uri, "ntp://", 6)) { /* nntp:// */
> return 7;
> + }
> + break;
> +
> + case 'p':
> + case 'P':
> + if (!strncasecmp(uri, "roxy:", 5)) { /* proxy: */
> + return 6;
> }
> break;
> }uhmm. Why that? I bet that breaks some things, since proxy: is not a real scheme. nd
