Hi all, Does anyone know how to redirect SSL traffic from http:// to http://www.? Also, traffic going to a specific port, e.g http://domain.co.uk:8443 to http://www.domain.co.uk:8443? Any assistance appreciated!
RewriteEngine on RewriteCond %{HTTP_HOST} ^website.com [NC] RewriteRule ^(.*)$ http://www.website.com/$1 [L,R=301] Code (markup):
Ah You might check this out: RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://www.website.com/$1 [L,R] Code (markup):