Visa ett inlägg
Oläst 2007-11-04, 14:43 #3
vidirs avatar
vidir vidir är inte uppkopplad
Medlem
 
Reg.datum: Jan 2004
Inlägg: 291
vidir vidir är inte uppkopplad
Medlem
vidirs avatar
 
Reg.datum: Jan 2004
Inlägg: 291
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();

}
?>
vidir är inte uppkopplad   Svara med citatSvara med citat