Hey, I hope someone can help me. I want to write an .htaccess file that will allow people who go to my site, www.myspacepass.info to be redirected to simply myspacepass.info without the WWW. Is there a way to do it. I know there is a way to have the www added, but don't know if you can do it the other way. Nick
try this RewriteEngine On RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] It only works on apache webserver though. Replace domain.com with your domain name.