Could someone give me an example of a .htaccess that would remove www from http:// and https:// ?
I want to remove the www from BOTH ssl & www:80
Could someone give me an example of a .htaccess that would remove www from http:// and https:// ?
I want to remove the www from BOTH ssl & www:80
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule (.*) //%1/$1 [L,R=301]