Mobile app version of vmapp.org
Login or Join
Dunderdale272

: Forwarding users wouldn't be set up in Google Apps unless your domain is registered with Google. Your best option to achieve this is with a redirect. You could set this up by: Going into

@Dunderdale272

Forwarding users wouldn't be set up in Google Apps unless your domain is registered with Google. Your best option to achieve this is with a redirect. You could set this up by:


Going into your domain registrar's control panel and setting it to redirect all traffic from one domain to the other
Adding a rewrite rule (in Apache this would be in your .htaccess file) to 301 redirect all traffic from one domain to the other.


If you can point both domains to your current hosting then the .htaccess rewrite is probably your better option. YMMV but it may look something like:

RewriteEngine on
RewriteBase /
RewriteCond %{http_host} ^.old-domain.com [NC,OR]
RewriteCond %{http_host} old-domain.com [NC,OR]
RewriteCond %{http_host} ^new-domain.co.uk [NC]
RewriteRule ^(.*)$ www.new-domain.co.uk/ [R=301,L]


You can also visit Webmasters Stack Exchange for a bit more guidance on that front.

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Dunderdale272

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme