htaccess redirect from www to non-www
问题 I am new to this. Code from my .htaccess file goes like this: RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L] RewriteCond %{HTTP_HOST} ^www\.(.+) [NC] RewriteRule ^(.*) http://%1/$1 [R=301,NE,L] Redirect 301 /abc/ /abcnew/ I want this to redirect from www to non-www i.e., from http://www.example.com to http://example.com I copied: RewriteCond %{HTTP_HOST} ^www\.(.+) [NC] RewriteRule ^(.*) http://%1/$1 [R