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
___
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
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
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
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
RewriteCond %{REQUEST_URI} !-s
RewriteRule ^page/(.*) http://d