Wagner, Aaron wrote on 22.06.2005:
>Running:: Server Version: Apache/2.0.48 (Win32) mod_perl/1.99_13-dev
>Perl/v5.8.3 PHP/4.3.4
>
>I had a similar issue and had to add a few lines to the httpd.conf
>
>PerlSwitches -w PerlSwitches -I/WebCore2/Perl
Hi,
I just installed mod_perl 2.0.1 as a DSO for Apache 2.0.53. When trying the
minimal example from the docs:
Alias /perl/ /home/httpd/httpd-2.0/perl/
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
PerlOptions +ParseHeaders
Options +ExecCGI
and running
Hi,
I am still struggling with the setup described in my earlier post. It almost
works now.
RewriteCond %{HTTP_HOST} (first|second|third)
RewriteRule ^(.+)$ %1/$1 [NC]
RewriteRule ^first/site/?$ cgi-bin/show.pl?id=2657 [L,NC]
# Index für 'Breskens'
RewriteRule ^first/site/page/?$ cgi-bin/show.p
André Malo wrote on 31.05.2005:
>* Arne Heizmann <[EMAIL PROTECTED]> wrote:
>
>>Boyle Owen wrote:
I have a problem with the following RewriteRule causing an
infinite loop:
RewriteCond %{HTTP_HOST} (first|second|third|fourth) RewriteRule
^(.+)$ %1/$1 [L,R,NC]
>>>
>>>You do
Boyle Owen wrote on 31.05.2005:
>>RewriteCond %{HTTP_HOST} (first|second|third|fourth) RewriteRule
>>^(.+)$ %1/$1 [L,R,NC]
>
>You do understand what ^(.+)$ converts to? It means: "from the
>start, 1 or more of any character (greedy), to the end"
>
>That is, it will match the entire URI, no matter
Hi,
I have a problem with the following RewriteRule causing an infinite loop:
RewriteCond %{HTTP_HOST} (first|second|third|fourth)
RewriteRule ^(.+)$ %1/$1 [L,R,NC]
When requesting a URL like
http://firsthost/something
I end up getting something like
http://firsthost/first/first/first/first/f