Tag Archives: Https

WordPress: Redirect Https To Http On My Site?

I had the biggest problem with this for the longest time. My WordPress site would occasionally strap on a nasty https: to some of my posts for no reason, which seemed to mess with some of my page results.

After trying different .htaccess suggestions, this one seemed to work for me (Apache Server configuration)

In any case, add this snippet of code to your .htaccess file located in root. (paste at top)

# redirect all https requests to http
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L] Continue reading WordPress: Redirect Https To Http On My Site?