• hello,
    i recently removed the ssl from my site http://cyauto.com and i want to redirect https:// to http://

    my .htaccess is:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    i tried using:

    RewriteCond %{HTTP} !=on
    RewriteRule ^/?(.*) http://%{SERVER_NAME}/$1 [R,L]

    and

    Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^.*example\.com$ [NC]
    RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]

    but no luck , i keep get ERR_TOO_MANY_REDIRECTS

    can anyone help?

    thnx

The topic ‘https redirection’ is closed to new replies.