: 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
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.
More posts by @Dunderdale272
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.