Desination url format?
-
jgribble
-
Topic Author
-
Offline
-
New Member
-
Less
More
-
Posts: 9
-
Thank you received: 0
-
-
Less
More
-
Posts: 3194
-
Thank you received: 441
-
-
8 years 23 hours ago #5768
by admin
Hi JG,
as far as I know there is no difference in terms of SEO / SERP results between yoursite.com and
www.yoursite.com. But some time ago I read Google started to privilege those sites with https support despite the simple http only.
Hope this helps.
Kind regards,
Luigi
Please Log in or Create an account to join the conversation.
-
jgribble
-
Topic Author
-
Offline
-
New Member
-
Less
More
-
Posts: 9
-
Thank you received: 0
-
-
8 years 17 hours ago #5769
by jgribble
Thanks for this response. The only qualm I have is that my "www" results are the true current pages. Without the "www" Google results sometimes serve cached pages which are identical but may contain obsolete meta info. I figured there may be some value in having all links lead to pages which have the current and true, non-cached meta info. So in my current redirects I've included "www" based on that observation, unless you disagree. I'd be interested to hear other perspectives from the forum.
And yes, I read the same thing about https last spring. Apparently it does matter, even though it doesn't matter if the site owner, like me, has a cloud proxy firewall in place. My firewall doesn't use the https prefix, but I am considering upgrading to it, for best SEO/SERP.
-Jim G.
Please Log in or Create an account to join the conversation.
Less
More
-
Posts: 3194
-
Thank you received: 441
-
-
8 years 1 hour ago #5770
by admin
Hi Jim
a solution could be to force any non-www URL to the equivalent www counterpart, like this site too. This can be done with a simple rule in the .htaccess file:
RewriteCond %{HTTP_HOST} ^yoursite\.com$ [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L]
Kind regards,
Luigi
Please Log in or Create an account to join the conversation.
-
jgribble
-
Topic Author
-
Offline
-
New Member
-
Less
More
-
Posts: 9
-
Thank you received: 0
-
-
7 years 11 months ago #5771
by jgribble
So in my case it would be?
RewriteCond %{HTTP_HOST} ^javelincommunications.com$ [NC]
RewriteRule ^(.*)$
www.javelincommunications.com/$1 [R=301,L]
I have read about this trick but never tried implementing it. Is there anything that can go wrong, any downsides?
Thanks for the thoughtful tip.
-Jim G/
Please Log in or Create an account to join the conversation.
Less
More
-
Posts: 3194
-
Thank you received: 441
-
-
7 years 11 months ago #5772
by admin
Put these lines after RewriteBase and save the original .htaccess file before to make the changes and save (no webserver restart needed). So if something goes wrong you can rollback really fast to the previous file.
KR
Luigi
The following user(s) said Thank You: jgribble
Please Log in or Create an account to join the conversation.
Time to create page: 0.115 seconds