Re: Script Alias
Re: Script Alias
- Subject: Re: Script Alias
- From: Lachlan Deck <email@hidden>
- Date: Sat, 14 Mar 2009 05:24:39 +1100
On 14/03/2009, at 5:10 AM, Ricardo J. Parada wrote:
What does the following definitions from the httpd.conf file do:
<IfModule alias_module>
...
ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) "/Library/
WebServer/CGI-Executables/$1"
Captures everything between the two outer brackets if the two non-
capturing inner brackets match (webobjects case insensitively).
i.e., (?!) first inner surrounding says don't match empty string ...
next, must match webobjects case insensitively.
http://httpd.apache.org/docs/2.2/mod/mod_alias.html#scriptaliasmatch
http://www.pcre.org/pcre.txt
with regards,
--
Lachlan Deck
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >Script Alias (From: "Ricardo J. Parada" <email@hidden>) |