What in the fuck? I've never seen this before.

CodSpot

Win
May 18, 2010
576
4
0
Mars
www.codspot.com
Ok so - my main project right now is a PR2 on this domain CODSpot | Call of duty forum
(which redirects to CODSpot | Call of duty forum)

(It's a Vbulletin forum) so when I click the banner, it takes me to CODSpot | Call of duty forum

When it takes me to the index.php, that is a PR3, wtf?

how the hell do I migrate it so CODSpot | Call of duty forum and CODSpot | Call of duty forum is all PR3? That would make my life much easier.


I appreciate all help dudes, and in return, you get love.
Page%203%20.com.jpg
 


Both are considered separate domains. You need to sign up for webmaster tools on both sites. Afterwords go into site configuration > settings and set your preferred domain as www.

This will let google know that both domains are actually the same and eventually (hopefully) fix your issue.
 
Ok so I understand what you're talking about now, and I just submitted both domains one with www. and one without www. and I changed the settings to "Preferred www."

So you're saying it should hopefully fix the error?
 
Thanks Guerilla - I could really use some help on this, I don't think webmaster tools will change it.

I think it has to do with the redirect or something along those lines. Google is seeing it as 2 separate domains the codspot.com the CODSpot | Call of duty forum and the CODSpot | Call of duty forum

The first 2 without index.php are a PR2 and the one with index.php is a PR3.

I need a definitive solution, I appreciate all the help!

Thanks in advance!
 
Add this to your .htaccess

Code:
RewriteEngine on
Options +FollowSymLinks

#Change the default page
DirectoryIndex index.php

#Force access to site without "www" to have "www"
RewriteCond %{HTTP_HOST} !^www\..* [NC]
RewriteRule ^(.*) http://www.%{HTTP_HOST}/$1 [R=301,L]

redirect 301 /index.php http://www.codspot.com

You are making this too complicated ;)
 
You can also do it at the DNS level if your host lets you edit your zone file (add an A record). Even if not, I think there is something in cpanel that can do it for you- look around in 'dns' or 'domain redirects'
 
I can't figure this out - this is what I've got in my .htaccess as we speak

Code:
RewriteEngine on

RewriteCond %{HTTP_HOST} ^codspot.com$
RewriteRule ^/?$ "http\:\/\/www\.codspot\.com" [R=301,L]
 
Both are considered separate domains. You need to sign up for webmaster tools on both sites. Afterwords go into site configuration > settings and set your preferred domain as www.

This will let google know that both domains are actually the same and eventually (hopefully) fix your issue.

better to go the .htaccess route, all the other search engines won't see the change made in webmaster tools.
 
Okay, remove the redirect then and see if it will still redirect the index.php to the root domain. If not, then add this where the redirect currently is.

Code:
RewriteBase /
 
I can't figure this out - this is what I've got in my .htaccess as we speak

Code:
RewriteEngine on

RewriteCond %{HTTP_HOST} ^codspot.com$
RewriteRule ^/?$ "http\:\/\/www\.codspot\.com" [R=301,L]

Code:
RewriteEngine on

RewriteCond %{HTTP_HOST} ^codspot\.com$
RewriteRule (.*) http://www.codspot.com/$1 [R=301,L]
 
Here is a bit of info I got on my issue, still can't make much sense of it, maybe one of you guys can tell me what this article is saying?

To a spider, www.domain.com/, domain.com/, www.domain.com/index.html and domain.com/index.html are different urls and, therefore, different pages. Surfers arrive at the site's home page whichever of the urls are used, but spiders see them as individual urls, and it makes a difference when working out the PageRank. It is better to standardize the url you use for the site's home page. Otherwise each url can end up with a different PageRank, whereas all of it should have gone to just one url.

If you think about it, how can a spider know the filename of the page that it gets back when requesting www.domain.com/ ? It can't. The filename could be index.html, index.htm, index.php, default.html, etc. The spider doesn't know. If you link to index.html within the site, the spider could compare the 2 pages but that seems unlikely. So they are 2 urls and each receives PageRank from inbound links. Standardizing the home page's url ensures that the Pagerank it is due isn't shared with ghost urls.

Example: Go to my UK Holidays and UK Holiday Accommodation site - how's that for a nice piece of link text ;). Notice that the url in the browser's address bar contains "www.". If you have the Google Toolbar installed, you will see that the page has PR5. Now remove the "www." part of the url and get the page again. This time it has PR1, and yet they are the same page. Actually, the PageRank is for the unseen frameset page.

When this article was first written, the non-www URL had PR4 due to using different versions of the link URLs within the site. It had the effect of sharing the page's PageRank between the 2 pages (the 2 versions) and, therefore, between the 2 sites. That's not the best way to do it. Since then, I've tidied up the internal linkages and got the non-www version down to PR1 so that the PageRank within the site mostly stays in the "www." version, but there must be a site somewhere that links to it without the "www." that's causing the PR1.

Imagine the page, www.domain.com/index.html. The index page contains links to several relative urls; e.g. products.html and details.html. The spider sees those urls as www.domain.com/products.html and www.domain.com/details.html. Now let's add an absolute url for another page, only this time we'll leave out the "www." part - domain.com/anotherpage.html. This page links back to the index.html page, so the spider sees the index pages as domain.com/index.html. Although it's the same index page as the first one, to a spider, it is a different page because it's on a different domain. Now look what happens. Each of the relative urls on the index page is also different because it belongs to the domain.com/ domain. Consequently, the link stucture is wasting a site's potential PageRank by spreading it between ghost pages.

Pagerank Explained. Google's PageRank and how to make the most of it.