Of course SkinnerW. If you want to redirect page to the new location you may use php in order to let search engines know about the change. Here is a sample code:
PHP Code:
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.this-is-the-new-location.com" );
?>
If you have the possibility to use .htaccess redirections -the mod rewrite apache modul is enabled- you may place this code into the .htaccess file and upload to the root folder
If you have a complete website moved to a new domain you may want to redirect the whole website using this code as the part of the .htaccess file