RE: [users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-15 Thread Axel-Stéphane SMORGRAV
I think your problem may be the ^ in the folowing line: RewriteRule ^page/(.*) http://domain.com/Merchant2/merchant.mvc?page=$1 [P] since a URL path usually begins with a /. Try RewriteRule ^/page/(.*) http://domain.com/Merchant2/merchant.mvc?page=$1 [P] instead. -ascs ___

Re: [users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-14 Thread Joshua Slive
On 6/14/05, Tim Traver <[EMAIL PROTECTED]> wrote: > Joshua, > > its doing an internal redirect to the local server. I need it to make an > external request to that URL and pass through the data it gets back. > > I need it to do that so that it hits the load balancing hardware, and sends > the req

Re: [users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-14 Thread Tim Traver
Joshua, its doing an internal redirect to the local server. I need it to make an external request to that URL and pass through the data it gets back. I need it to do that so that it hits the load balancing hardware, and sends the request to the server group that can handle the requests for th

Re: [users@httpd] Forcing External Redirect requests through mod_rewrite and proxy

2005-06-14 Thread Joshua Slive
On 6/14/05, Tim Traver <[EMAIL PROTECTED]> wrote: > Hi all, > > ok, this may sound wierd, but I'm sure you guys have heard it all... > > I am trying to do a proxy redirect using the [P] directive at the end of > a mod_rewrite rule. Here is what my .htaccess file looks like : > > RewriteEngine On