Hi Joe,
I think there might be a bit of confusion between DNS and redirection/canonicalization.
You should be able to use a non-www domain name to get to your landing page without any further configuration. What the DNS does (A records etc) is tell your web server that people visiting your domain name on either www or non-www should still get a page served. What it doesn’t do is choose the default option or manage the redirection of moving one potential visitor onto or away from www.
As long as you have both an A record for www and an A record for non-www then the next step is to sort out your redirection. The A record for non-www should
For this purpose, you should use 301 redirection and specify the correct www or non-www page in your canonicalization meta tags in your pages source code.
If you’re using the Unbounce Wordpress integration that can be accomplished within WordPress’s settings and configuration, probably the easiest way to do it.
If you’re not then you can use a few lines of code in your root .htaccess files, this works if you’re on some kind of nix installation with CPanel / WHM and the code you need to add to your .htaccess file is:
RewriteBase /
RewriteCond %{HTTP\_HOST} ^www931a3f856d6a42c44266957da18569ba#46;(.\*)$ 8NC]
RewriteRule ^(.\*)$ http://%1/$1 *R=301,L]
If you are on a windows machine then you will need to go to your iis server control panel look for url rewriting, there you can select which exact URL you wish to forward visitors to from the drop down box.
Cheers
Stuart.
Stuart,
This makes total sense. I am 99% sure that we are opening an account and putting DNS at the cPanel level not managing it from Network Solutions. So using the 301 will take care of exactly what I need. We will set it up as the documentation said with the CName for the www and the A record for the non-www version then put the 301 in on our end and voila, a web page.
thank you,
Joe