| :: |
| Author |
Message |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Sat Aug 19, 2006 11:40 pm Post subject: Re: SEO not working? |
|
|
Well, 295 indexed pages is not nothing.
Then, you must have done something wrong, because I see this type of URL in Google listing :
-www.pc-corner.biz/-vp8311.html
-www.pc-corner.biz/-vp9342.html
etc ...
Many of them in the omitted results.
I don't know where they cam from, as I have found this one listed : -http://www.pc-corner.biz/-nvody--vf115.html and the forum does not show this link.
This could come from the webmedic mod rewrite if you have used it before, because the phpBB SEO mod rewrite never outputted double hyphens ("--").
And so far all the -www.pc-corner.biz/-vp9342.html type of URLs are 404, and worst here is the beginning of the HTTP Header sent by the mod you are using to handle 404's :
| Quote: | HTTP/1.1 200 OK
Date: Sat, 19 Aug 2006 23:22:34 GMT
Server: Apache
X-Powered-By: PHP/4.4.0 |
So it's kind of normal tobe facing this situation, and if you do nothing it won't change as bots cannot figure it's 404 if the sent header sent is "200 OK". This being the number one error made while handling error pages with php scripts.
So what I suggest is you first add this line to your robots.txt :
| Code: | Disallow: /-vf
Disallow: /-vt |
Then use your Google account to remove all URLs disallowed by your robots.txt at once (using the automated removal tool).
Then, you should redirect those URLs.
A simple solution would be to redirect all of them to your index, just to make sure no one follows those links.
The rule could be :
| Code: | | RewriteRule ^-vf([0-9]+)\.html$ http://www.pc-corner.biz/ [R=301,L] |
Once you'll have done that, Goggle will start loosing less time spidering all those useless URLs and will start working on the good ones.
Mx Google sitemap is you friend here, I could not find it installed, really helps out.
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Sun Aug 20, 2006 7:38 am Post subject: Re: SEO not working? |
|
|
Hello, thanks for your help, i have modified robots.txt and htaccess in root directory as zou said... but i dont understand to this very good
| Quote: | | Then use your Google account to remove all URLs disallowed by your robots.txt at once (using the automated removal tool). |
btw: i will try the google sitemaps if it will help...
but my questions is, isnt this mod too "hard" on the server? (hope you understand me but i cant find the right word ) |
Last edited by Hannibal_King on Sun Aug 20, 2006 8:14 am; edited 2 times in total |
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Sun Aug 20, 2006 7:43 am Post subject: Re: SEO not working? |
|
|
strange, i have added that rewrite rule to htaccess but bad links are not redirected to index
www.pc-corner.biz/-vp8311.html
Edit: and if it will help, my htaccess is here:
| Code: | Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^pc-corner.biz/ [NC]
RewriteRule ^(.*) http://www.pc-corner.biz/$1 [QSA,R=301,L]
RewriteRule ^$ /index.php [QSA,L,R=301]
RewriteRule ^-vf([0-9]+)\.html$ http://www.pc-corner.biz/ [R=301,L]
RewriteRule ^.+/([^/]+\.html)$ /index.php [R=301,L]
RewriteRule ^.+-vc([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
RewriteRule ^.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L]
RewriteRule ^.+-vf([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L]
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
RewriteRule ^prispevok([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L]
RewriteRule ^uzivatel([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$1 [QSA,L] |
|
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Sun Aug 20, 2006 10:10 am Post subject: Re: SEO not working? |
|
|
Sorry I did not mention that you needed one rule per type of URLs, the one provided works for forums, so you need to add below it :
| Code: | RewriteRule ^-vt([0-9]+)\.html$ http://www.pc-corner.biz/ [R=301,L]
RewriteRule ^-vp([0-9]+)\.html$ http://www.pc-corner.biz/ [R=301,L] |
Or you can group the three like in one this :
| Code: | | RewriteRule ^-(v[f|t|p])([0-9]+)\.html$ http://www.pc-corner.biz/ [R=301,L] |
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Sun Aug 20, 2006 12:45 pm Post subject: Re: SEO not working? |
|
|
OK, is good now, but how abut my robots.txt? (http://www.pc-corner.biz/robots.txt) and htaccess? is there good?
and how to delete bad indexed links if i want to index the new links now?
Edit: and what about google sitemaps, can they affect speed of the forum?  |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Sun Aug 20, 2006 3:46 pm Post subject: Re: SEO not working? |
|
|
| but will this mod affect forum speed?? |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Mon Aug 21, 2006 8:21 am Post subject: Re: SEO not working? |
|
|
when the next version will be released? i will wait for it  |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Tue Aug 22, 2006 5:35 am Post subject: Re: SEO not working? |
|
|
| and how to delete bad links from google if i want to start indexing the good links? |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Tue Aug 22, 2006 4:36 pm Post subject: Re: SEO not working? |
|
|
OK, thanks, so if i detete dead links from google, it will stard indexing the good URLs with this robots.txt?
http://www.pc-corner.biz/robots.txt |
|
|
| Back to top |
|
 |
Hannibal_King PR0

Joined: 22 Jun 2006 Posts: 78
|
Posted: Thu Aug 24, 2006 7:03 am Post subject: Re: SEO not working? |
|
|
| dcz wrote: | Well, 295 indexed pages is not nothing.
|
Hello, i ahvent time to delete the bad links from google and install google sitemap, but now i have 346 indexed links  |
|
|
| Back to top |
|
 |
|
|