<?php // redirection header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.xxxxxx.com/"); ?> Why does it do absolutely nothing?
Try this: header('Location: http://www.example.com/', 301); PHP: It also might be handy to supply a short HTML page after the header with the URL of the final destination.