Du kanske menar permanenta redirects (301)?
Php
Kod:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http ://www.domän.se/katalog");
exit();
Asp
Kod:
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http ://www.domän.se/katalog"