Redireccionar urls a un dominio distinto con htaccess
Ejemplos
RewriteEngine On
RedirectMatch 307 ^/api/(.*)$ http://myotherdomain.com/api/$1
RedirectMatch 307 ^/api http://myotherdomain.com/api
RedirectMatch 307 ^/admin/(.*)$ http://myotherdomain.com/admin/$1
RedirectMatch 307 ^/admin http://myotherdomain.com/admin
RedirectMatch 307 ^/empleados/(.*)$ http://myotherdomain.com/empleados/$1
RedirectMatch 307 ^/home/(.*)$ http://myotherdomain.com/home/$1
RedirectMatch 307 ^/terms-n-conditions http://myotherdomain.com/terms-n-conditions