Hi,
Jeff and Josh,
The Additional URLs are in fact using 301 Redirects. If you follow up the thread provided by Jeff, you will notice that in the end of the thread we confirm it.
Haydn,
Everything that Josh mention is correct. I just want to add that you can put the following PHP code at the top of the pages located on your old domain, which will result a 301 Redirect to your new pages:
| <?php |
| header('HTTP/1.1 301 Moved Permanently'); |
| header('Location: '.$location); |
| ?> |
The $location variable holds the new address a string value.
Don't hesitate to contact us if you have other questions.
Kind regards,
Georgi
the Telerik team