Re: [users@httpd] RewriteRule problems

2005-06-16 Thread Krist van Besien
On 6/15/05, Arne Heizmann <[EMAIL PROTECTED]> wrote: > Krist van Besien wrote: > > > > I get the impression that probably somewhere in your httpd config > > there is an access rule that forbids access to the /old URL, and that > > therefore the "403 Forbidden" gets triggered before everything else.

RE: [users@httpd] RewriteRule problems

2005-06-15 Thread Axel-Stéphane SMORGRAV
L is not necessary when you use P. P will force the request to be handled by mod_proxy. -ascs -Original Message- From: Ian Huynh [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 7:08 PM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] RewriteRule problems what does your

Re: [users@httpd] RewriteRule problems

2005-06-15 Thread Arne Heizmann
Krist van Besien wrote: I get the impression that probably somewhere in your httpd config there is an access rule that forbids access to the /old URL, and that therefore the "403 Forbidden" gets triggered before everything else. But the rewrite log shows that the rewrite module does process th

Re: [users@httpd] RewriteRule problems

2005-06-15 Thread Krist van Besien
On 6/15/05, Arne Heizmann <[EMAIL PROTECTED]> wrote: > Krist van Besien wrote: > > > > Did you configure you apache to allow proxying? [...] You need something > > like this in your apache: > > > > ProxyRequests Off > > > > Order deny,allow > > Allow from all > > > > I've added this, an

Re: [users@httpd] RewriteRule problems

2005-06-15 Thread Arne Heizmann
Krist van Besien wrote: Did you configure you apache to allow proxying? [...] You need something like this in your apache: ProxyRequests Off Order deny,allow Allow from all I've added this, and it doesn't seem to have an effect. I still get the Forbidden message. I also tried "Pr

Re: [users@httpd] RewriteRule problems

2005-06-15 Thread Arne Heizmann
Ian Huynh wrote: what does your rewrite log file say? If you add RewriteEngine on RewriteLog "/usr/local/var/apache/logs/rewrite.log"<<--- change this to your appropriate path RewriteLogLevel 9 <<-- use level 9 only for debugging. RewriteRule ^/old

Re: [users@httpd] RewriteRule problems

2005-06-15 Thread Krist van Besien
On 6/14/05, Arne Heizmann <[EMAIL PROTECTED]> wrote: > > Hi, > > I get a 403 Forbidden when trying to use a RewriteRule to proxy a > request to another server. > > I have two servers, ukrbcsr01 and ukrbcsr02. ukrbcsr02 is accessible > from the outside, ukrbcsr01 isn't. Their LAN IPs are 192.168.

RE: [users@httpd] RewriteRule problems

2005-06-14 Thread Ian Huynh
what does your rewrite log file say? If you add RewriteEngine on RewriteLog "/usr/local/var/apache/logs/rewrite.log"<<--- change this to your appropriate path RewriteLogLevel 9 <<-- use level 9 only for debugging. RewriteRule ^/old/(.*) http://ukrbc