I’m migrating a sub-site to its new domain and would like to redirect all the existing links to the new domain, while keeping all of the URL parameters
Examples:
domain.com/xyz --> xyz.com
domain.com/xyz/link.php --> xyz.com/link.php
domain.com/xyz/folder/link.php --> xyz.com/folder/link.php
Thanks
You can put this code in the beginning of your htaccess (in document root folder of
domain.com
) just belowRewriteEngine On
line (orRewriteBase
if present)Use
(Note that SO doesn’t let me use xyz)