How to redirect alias or old domains to your primary domain
Have you ever been in one of these situations?
- Migrated from one domain to another (and preserve your search rankings)
- Created alternative domains but have one primary domain (which also helps with your search rankings)
You can use the following PHP script:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# redirect from multiple domains to your primary domain | |
if (isset($_SERVER['WODBY_ENVIRONMENT_TYPE']) && $_SERVER['WODBY_ENVIRONMENT_TYPE'] == 'prod' && php_sapi_name() != "cli") { | |
$redirect_from = array( | |
'oldsite.com', | |
'alternative-spelling.com', | |
); | |
if (in_array($_SERVER['HTTP_HOST'], $redirect_from)) { | |
header('HTTP/1.0 301 Moved Permanently'); | |
header('Location: https://primary-domain.com'); | |
exit(); | |
} | |
} |
You want to replace oldsite.com and alternative-spelling.com with your alternative domains (delete one of them if you only have one). Then replace primary-domain.com with your primary domain. The script is used in a wodby deployment environment, but the most important part is:
# php snippet
header('HTTP/1.0 301 Moved Permanently');
header('Location: https://primary-domain.com');
Comments
Post a Comment