no-www
By Rayed
I removed www from my site name, so from now on it is only http://rayed.com/, www.rayed.com will be still acceptable but will be redirect to rayed.com.
Here is how it is done in Apache:
<VirtualHost *>
        ServerName www.rayed.com
         Redirect permanent / http://rayed.com/
</VirtualHost>