Hello friends i want to remove www from my subdomain.please can any body help how i can do this in .htaccess.please tell the code for this. lots of thanks.
This should work: RewriteEngine on RewriteCond %{HTTP_HOST} ^www.sub.domain.com$ RewriteRule ^(.*)$ http://sub.domain.com/$1 [R=301] Code (markup):