View Single Post
  #1 (permalink)  
Old 14-05-2008, 20:02
ajbird ajbird is offline
Junior Member
 
Join Date: Apr 2008
Posts: 12
Default redirect all https calls to http

HI all,

EUKHOSTS are currently making a bit of a mess of an SSL order I placed and I am in desperate need of an emergency patch...

There are a number of links on various website hostings that call up links on https://
these links are of course now throwing up SSL errors in browsers... this did not used to be much of a problem but IE7 and FF3 refuse to show anything..

I have just discovered that my client accidently called all of their ebay images and ecommerce images via
Code:
https://www.blah.com/image.jpg
I know they should not have been but that does not help the fact that every shop image and every ebay product description is now showing no images!! and they are losing lots and lots of money..

so given that eukhosts have failed to install the SSL cert (which would solve all my problems in one go!!) i really really need to redirect all https calls to http..

so far I have tried the following on .htaccess files

RewriteEngine on
RewriteCond %{HTTPS} =on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

and

RewriteEngine On
RewriteCond %{SERVER_PORT} ^443$
RewriteRule (.*) http://%{SERVER_NAME}/$1 [R=301,L]

all to no avail..

I tried asking the VPS Hosting help desk via chat but no luck...

has anyone got a clue???

much appreciated.
Reply With Quote