RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Ian Stradling
add-a-tip RewriteCond %{HTTPS} on RewriteRule / http://www.website.com%{REQUEST_URI} [R,L] -Original Message----- From: Ian Stradling Reply-to: "users@httpd.apache.org" To: users@httpd.apache.org Subject: RE: [users@httpd] Rewrite Conditions & Rules Date: T

RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Ian Stradling
RewriteCond %{HTTPS} off RewriteRule / https://www.website.com%{REQUEST_URI} [R,L] RewriteCond %{REQUEST_URI} ^/$ RewriteCond %{REQUEST_URI} ^/home RewriteCond %{REQUEST_URI} ^/insurance-tips RewriteCond %{REQUEST_URI} ^/add-a-tip RewriteCon

RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Ian Stradling
RewriteRule / http://www.website.com%{REQUEST_URI} [R,L] RewriteCond %{REQUEST_URI} ^/add-a-tip RewriteCond %{HTTPS} on RewriteRule / http://www.website.com%{REQUEST_URI} [R,L] -Original Message----- From: Ian Stradling Reply-to: "users@httpd.apache.org&

RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Ian Stradling
, March 03, 2011 10:43 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Rewrite Conditions & Rules On Thu, Mar 3, 2011 at 5:39 PM, Ian Stradling wrote: > No, unfortunately it doesn’t.  When a visitor first goes to the website, it > stays in HTTP.  As soon as a visitor clicks on one of

RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Ian Stradling
REQUEST_URI} ^/insurance-tips RewriteCond %{REQUEST_URI} ^/add-a-tip RewriteCond %{HTTPS} on RewriteRule / http://www.website.com%{REQUEST_URI} [R,L] -Original Message- From: Ian Stradling Reply-to: "users@httpd.apache.org" To: users@httpd.apa

RE: [users@httpd] Rewrite Conditions & Rules

2011-03-03 Thread Ian Stradling
t's supposed to do. If someone could please point me in the right direction, I'd appreciate it. Thanks! -Original Message- From: Ian Stradling [mailto:i...@impalanetworks.com] Sent: Monday, February 28, 2011 12:40 PM To: users@httpd.apache.org Subject: [users@httpd] re: Rewri

[users@httpd] re: Rewrite Conditions & Rules

2011-02-28 Thread Ian Stradling
g as HTTP. But when you go back to the home page, it is supposed to remove the HTTPS, but it does not. I'm hoping that someone can critique my code here and tell me where I've gone wrong. I appreciate any feedback. Th