I have searched everywhere and still can't find any answers.
I'm trying to redirect eg: https://www.domain.com to http://www.domain.com
Currently I have a .htaccess file which includes:
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{SERVER_PORT} ^443$ [OR]
RewriteCond %{HTTPS} =on
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
But I keep receiving the following error:
An error occurred during a connection to www.domain.com. SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long)...
Do I need to add anything to my vhost file for VirtualHost *:443? for domain.com - Apologies, quite new to this. Any help/direction would be greatly appreciated, thanks!