quick redirects question:
I want to redirect the https and www. to https://yourdomain.com. Is the below the code to place in htaccess?
RewriteEngine on
RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) https://yourdomain.com/%{REQUEST_URI} [L,R=301]
Thanks,
I want to redirect the https and www. to https://yourdomain.com. Is the below the code to place in htaccess?
RewriteEngine on
RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) https://yourdomain.com/%{REQUEST_URI} [L,R=301]
Thanks,