PDA

View Full Version : without www = PR 5 with www = PR 3



Percept
05-05-2004, 12:27 AM
How do I get the PR 3 from http://www.percept.be added to my PR 5 at http://percept.be ?

Best.Flash
05-05-2004, 02:47 AM
If your on a Unix box try this:

http://www.tera-byte.com/support/forum/showthread.php?threadid=711

mobilebadboy
05-05-2004, 02:51 AM
Well, Google sees those as 2 separate entities, and there's no way to "combine" your PR. If you're on an Apache server, you could create (or add to) an .htaccess file and add this:


RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.percept\.be $ [NC]
RewriteRule ^(.*)$ http://percept.be/$1 [R=301,L]

Then upload that to the root folder. That will rewrite your URL to percept.be, and the 301 will be interpreted to spiders as "moved permanently". Now this won't effect people who link to you with www. But if you know who's linking you, you could always ask them to change it.

It's not a win-win situation all around, but it's a way to drive more trafic and assign (more of) your PR to percept.be.

edit: This is why I hate explaining things. Someone always steps on my toes. :o

Percept
05-05-2004, 02:52 AM
thanks guys !