Forum Moderators: open

Message Too Old, No Replies

Google PageRank Question - which is right?

         

seo2004wow

1:03 am on Feb 24, 2004 (gmt 0)

10+ Year Member



I get so many diff. result for the pagerank.

Look at the following:

when I use http*//www.example.com/ I get 98 backlinks

when but when I use www.example.com I get 512 backlinks

and when I use example.com I get more backlinks

why and which one counts.

[edited by: pageoneresults at 1:21 am (utc) on Feb. 24, 2004]
[edit reason] Examplified URIs [/edit]

Macro

6:09 pm on Feb 24, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Google linkback reports are not accurate. For best results on linkbacks use link:url at alltheweb.com

seo2004wow

7:59 pm on Feb 24, 2004 (gmt 0)

10+ Year Member



Thanks

doc_z

9:44 am on Feb 25, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Your backlinks are probably splitted between 'different' subdomains/pages. [webmasterworld.com] Use a 301 redirect as webmasterworld did.

seo2004wow

5:14 pm on Feb 25, 2004 (gmt 0)

10+ Year Member



What does 301 redirect do?

webdevjim

5:56 pm on Feb 25, 2004 (gmt 0)

10+ Year Member



Hey,
Here's some sample code
<META HTTP-EQUIV="refresh" content="0;URL=http://www.exampleURL.com/">
It just tells the browser when it gets to a page with this meta tag to go to the page listed in the URL parameter.

nanocet

6:57 pm on Feb 25, 2004 (gmt 0)

10+ Year Member



no, no, no, don't use a META redirect, use a 301.
search the forum for more ino on it, there's a lot to find!

doc_z

7:56 pm on Feb 25, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



seo2004wow,

use a 301 to redirect from example.com to www.example.com or vice versa. A 301 redirection is recommended by Google. A meta refresh is a different type of redirection. Although a meta redirection doesn't seem to cause problems, I would use a 301 redirection.

Here's the correct link. [webmasterworld.com]

Macro

8:37 pm on Feb 25, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



doc_z, it says there:

RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{HTTP_HOST} ^example\.com
RewriteRule ^(.*)$ [example.com...] [R=permanent]

I've seen this and various other references to 301s. But this all assumes several things. On our shared hosting, Windows 2000 based, Frontpage 2000 site I've never figured where to put this code/how to use 301 to redirect a page :-(

Chico_Loco

9:54 pm on Feb 25, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Marco,

What server does the window's server run? If apache then I *think* that you can use .htaccess files - but I'm not sure if Mod_Rewrite exists for Windows platforms.

Other than that, you'll probably have to talk to your ISP and get them to do some fancy ISAPI filtering to do the redirect on windows - not sure though.

Macro

10:53 pm on Feb 25, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi Chico,

>> What server does the window's server run?

You've got me there. I thought that a window's server uses er.. Windows as the server software. When talking Windows/Apache isn't it a case of your server having one or the other?

Or is that Apache thing people refer to equivalent to "IIS" on a Windows server?

Chico_Loco

1:18 am on Feb 26, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Well... Windows in itself is just a platform. Then the web server can be whatever you want.

Apache is more commonly found on *nix platforms (because it comes pre-installed on a lot of them, plus it's powerful), whereas windows servers usually come bundled with IIS (Internet Information Services) which acts as a web server, ftp server etc..

Apache can be installed on Windows servers, but it's not as common as IIS on windows.

IIS does not understand .htaccess - but I *think* that is apache is used as the server instead of IIS then you can use .htaccess - not 100% sure though...

Fundamentally - the code above should be placed in 1 of 2 places:

1) On a dedicated box, put it in the httpd.conf file. Code here executes faster than .htaccess files

2) On a shared server, put it in your .htaccess file (in the WEB-ROOT).