Category: Lighttpd
Redirecting www.whatever.com to whatever.com This really helps when using the simple_vhost mod: (add it to your lighttpd.conf)
$HTTP["host"] =~ "^www\.(.*)" { url.redirect = ( "^/(.*)" => "http://%1/$1" ) }
from: nixCraft