Htaccess Redirect www to non-www https

by on under Regex
1 minute read

.htaccess settings to redirect www to non-www with https:

		
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
		
	

Reference:

regex, mod rewrite, apache, redirect, url rewriting
comments powered by Disqus