lots of us are using Alias with PATH_INFO. We are just not using ScriptAlias
because that invokes mod_cgi instead of mod_perl.
--
___cliff [EMAIL PROTECTED]http://www.genwax.com/
Cliff Shaw wrote:
> I'd love to hear more from others about this but I believe ScriptAliasing is
> VERY MUCH ALIVE in mod_perl. I kept reading that you can't use ScriptAlias
> with mod_perl. Fine. True. But I read that as a death sentence to having
> pretty URL's with mod_perl. With that statement, it should say "To use
> ScriptAliases with mod_perl, simply rename them to Alias."
> This is what I put in my Apache 1.3.12 installation and mod_perl 1.22
> httpd.conf file:
> Alias /printer /www/circles_cgi/printenv.cgi
>
> and it works! People need to know that you can get the same effect that a
> ScriptAlias gives you with an a straight Alias, as long as you the script
> called (printenv.cgi) is flagged as a mod_perl script under a <Files> tag or
> <Location> tag.
>
> How did I get this to work? Why hasn't anyone else figured this out? Am I
> just preaching the obvious here? Sure seemed to me that any type of
> "ScriptAlias" was DEAD under mod_perl.
>
> Cliff