hi,
Wers braucht:
RewriteCond %{HTTP_HOST} ^www.example.com
RewriteRule ^(.*)$ http://example.com/$1 [r=301]
Geht net.
Dafür aber mit PHP:
/*
* Von „www.example.org“ auf „example.org“ umleiten
*/
if (strpos($_SERVER['HTTP_HOST'], 'www.') === 0)
{
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://' . substr($_SERVER['HTTP_HOST'], 4) . $_SERVER['REQUEST_URI']);
}
mfg