RE: [users@httpd] mod rewrite question https to http

2012-02-02 Thread Roland RoLaNd
Thank you for your help.is there any ebook you advise me to read to catch up on the below ? Date: Thu, 2 Feb 2012 07:04:06 -0200 From: imed...@grosshat.com To: users@httpd.apache.org Subject: Re: [users@httpd] mod rewrite question https to http Hi Roland, on the context of SSL Virtual Host

Re: [users@httpd] mod rewrite question https to http

2012-02-02 Thread Iñigo Medina
Hi Roland, on the context of SSL Virtual Host put the following rewrite rules: RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} iñigo On Wed, 1 Feb 2012, Roland RoLaNd wrote: Dear all, I'm a complete newbie to apache and i've inherited a virtual h

Re: [users@httpd] mod rewrite question https to http

2012-02-01 Thread Igor Cicimov
Put the last rewrite rule inside your ssl virtual host and change https to http. On Feb 2, 2012 12:29 AM, "Roland RoLaNd" wrote: > Dear all, > > I'm a complete newbie to apache and i've inherited a virtual host setup. > i have the need to redirect all traffic from https to http (443 to 80, yes >

[users@httpd] mod rewrite question https to http

2012-02-01 Thread Roland RoLaNd
Dear all, I'm a complete newbie to apache and i've inherited a virtual host setup.i have the need to redirect all traffic from https to http (443 to 80, yes that is correct) the relevant rewrite rules in httpd.conf are as such: # all other traffic is redirected to the SSL siteRewriteEng