I want redirct https without www,
i have tried below code,
RewriteCond %{HTTP_HOST} ^www\.subdomain.doamin\.io [NC]
RewriteRule ^(.*)$ https://ubdomain.doamin.io/$1 [L,R=301]
I want redirct https without www,
i have tried below code,
RewriteCond %{HTTP_HOST} ^www\.subdomain.doamin\.io [NC]
RewriteRule ^(.*)$ https://ubdomain.doamin.io/$1 [L,R=301]
Try the below code,it will redirect to https without www and works for me
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC]
RewriteRule (.*) https://%1%{REQUEST_URI} [L,R=301]