RE: [EMAIL PROTECTED] Help with re-write rules

2006-08-15 Thread Foster, Stephen (ASPIRE)
, for the heartbeat and server-status pages. many thanks for your input. Steve -Original Message- From: Robert Ionescu [mailto:[EMAIL PROTECTED] Sent: 14 August 2006 20:36 To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Help with re-write rules Foster, Stephen (ASPIRE) wrote

RE: [EMAIL PROTECTED] Help with re-write rules

2006-08-15 Thread Foster, Stephen (ASPIRE)
To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Help with re-write rules On 8/14/06, Foster, Stephen (ASPIRE) [EMAIL PROTECTED] wrote: RewriteCond %{HTTP_HOST} !^online\.domain\.com [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^/(.*) http://online.domain.com

[EMAIL PROTECTED] Help with re-write rules

2006-08-14 Thread Foster, Stephen (ASPIRE)
hi all, quick newbie question if i may. I have been playing about with re-write rules today in order to acheive the behaviour i want, the situation i currently have is that i need to match and effect the following: 1: All requests to something other than the the FQDN should be written to the

Re: [EMAIL PROTECTED] Help with re-write rules

2006-08-14 Thread Joshua Slive
On 8/14/06, Foster, Stephen (ASPIRE) [EMAIL PROTECTED] wrote: RewriteCond %{HTTP_HOST} !^online\.domain\.com [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^/(.*) http://online.domain.com:%{SERVER_PORT}/$1 [R] RewriteCond %{REQUEST_URI} !^/heartbeat/heartbeat.htm RewriteCond

Re: [EMAIL PROTECTED] Help with re-write rules

2006-08-14 Thread Robert Ionescu
Foster, Stephen (ASPIRE) wrote: # = # Rewrite to HTTPS Settings # = RewriteCond %{HTTP_HOST} !^online\.domain\.com [NC] RewriteCond %{HTTP_HOST} !^$ Use lexicographically equal (!=) here instead