.Htaccess :: HTTPS to HTTP :: Redirect Entire Site ? .htaccess 301 redirect HTTPS to HTTP

1 replies
  • WEB DESIGN
  • |
<<<...>>> I wasn't sure which subforum to post this question in so I did both... Not to spam but b/c I need some quick help! Sorry & Thanks

I've been doing searches for the answer to this question and I keep finding the answer.. To redirect only a portion of a site... Not what I want. I want to redirect the ENTIRE website!

If (for some reason) the user starts out with HTTPS and types in the rest of my websites URL I get a "Secure Connection Fail" or another error.

Ex. https://lawsuitinformation.org --->
automatically redirect to http://lawsuitinformation.org
((Secure Connection Failed - An error occurred during a connection to lawsuitinformation.org. (Error code: ssl_error_rx_record_too_long)))

Ex. https://www.careydanis.com ---> automatically redirect to http://www.careydanis.com
((Unable to connect - Firefox can't establish a connection to the server at Carey Danis & Lowe | Attorneys At Law.))

Can anyone help me out here?!

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



NO "(/checkout)" ---> WHOLE site/domain!

I'm sure it's something real stupid and easy... I'm the moron for multitasking to many damn things! This forum has neen a GOD SEND so THANK YOU IN ADVANCE!

CHEERS!
#301 #entire #htaccess #http #https #redirect #site
  • Profile picture of the author OldLodgeSkins
    Hi,

    Here's how I used to do a 301 from an old domain to a new one, it may help you sort your problem out although this is a slightly different case:

    Code:
    RewriteCond %{HTTP_HOST} ^hasta-luego.net [NC]
    RewriteRule ^(.*)$ http://www.site-professionnel-discount.fr/$1 [L,R=301]
    Seb.
    Signature
    Do you use Facebook ? Then you can make money just by inviting people to a Facebook group ! It's called the Instant Income System. How cool is that?
    {{ DiscussionBoard.errors[6258892].message }}

Trending Topics