Kanske denna hjälper ,, men inte i htaccess,, utan på sidorna..
<?php
$host=$_SERVER["HTTP_HOST"];
switch ($host) {
case 'subdomän.domän.nu':
header("HTTP/1.1 301 Moved Permanently");
header("Location:
http://domän.nu");
exit();
case '
www.subdomän.domän.nu':
header("HTTP/1.1 301 Moved Permanently");
header("Location:
http://domän.nu");
exit();
//default
header("Location:
http://domän.nu");
exit();
}
?>