views:

36

answers:

1

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

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