Re: [EMAIL PROTECTED] Rewrite all but one page

2008-04-10 Thread Krist van Besien
On Wed, Apr 9, 2008 at 4:19 PM, Mike Cardwell <[EMAIL PROTECTED]> wrote: > RewriteCond %{SERVER_PORT} 80 > RewriteCond %{REQUEST_URI} !^/+partners/+video\.php > RewriteRule ^/partners(.*)$ https://testvideo101.example.com/partners$1[R,NC] Another way: RewriteRule /partners/video.php - [L] Re

Re: [EMAIL PROTECTED] Rewrite all but one page

2008-04-10 Thread Mike Cardwell
Matthew Tice wrote: RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} !^/+partners/+video\.php RewriteRule ^/partners(.*)$ https://testvideo101.example.com/partners$1[R,NC] Thanks Mike, that did it. np One question. Are the '+'

Re: [EMAIL PROTECTED] Rewrite all but one page

2008-04-09 Thread Matthew Tice
> > RewriteCond %{SERVER_PORT} 80 > RewriteCond %{REQUEST_URI} !^/+partners/+video\.php > RewriteRule ^/partners(.*)$ > https://testvideo101.example.com/partners$1[R,NC] > > Mike > Thanks Mike, that did it. One question. Are the '+' necessar

Re: [EMAIL PROTECTED] Rewrite all but one page

2008-04-09 Thread Mike Cardwell
Matthew Tice wrote: Hello, I feel like this is an easy one - but it's throwing me off. I have my webserver behind a netscaler load balancer. The netscaler handles the SSL traffic and redirects the decrypted traffic to port 81. I need to redirect all traffic except a certain page. The rewrit

[EMAIL PROTECTED] Rewrite all but one page

2008-04-09 Thread Matthew Tice
Hello, I feel like this is an easy one - but it's throwing me off. I have my webserver behind a netscaler load balancer. The netscaler handles the SSL traffic and redirects the decrypted traffic to port 81. I need to redirect all traffic except a certain page. The rewrite rule I have is this: