My first attempt at a 301 using frontpage. Is it too fast? http:www.hubcaps-wheelcovers.com/hubcaps_323.htm Thanks
Thats not a 301 redirect and won't pass PR. You need the following php code or use htaccess header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.site.com/newpage.htm"); exit(); PHP:
<?php header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.site.com/newpage.htm"); exit(); ?> Code (markup): You must use php tags.