Попробуйте выполнить следующее в файле .htaccess в корневой папке www.thegatepost.com
домена
RewriteEngine on
RewriteBase /
#if request on www.gatepost.com
RewriteCond %{HTTP_HOST} ^www\.thegatepost\.com$ [NC]
#and for a resource in the /news/ directory
RewriteCond %{REQUEST_URI} ^/news/ [NC]
#redirect them to same resource on the archives.thegatepost.com
RewriteRule (.*) http://archives.thegatepost.com/$1 [L,R=301]