Please provide me with .htaccess syntax to do the following:
- Redirect from http to https
- Redirect from https://www.domain.com.uk to https://domain.com.uk
I tried the following but it didn't work:
RewriteCond %{HTTP_HOST} ^www.(.*)
RewriteRule ^.*$ https://%1/$1 [R=301,L]