Does google index FUDforum [message #19841] |
Sun, 12 September 2004 11:53 |
Kabir
Messages: 29 Registered: September 2004
Karma: 0
|
Junior Member |
|
|
Hi
I'm that i could setup a forum with FUDforum. Everyting work well.
I only wonder that googlebot always only read my index page, but not the Threads.
Does i only have to wait and it simply will take a time ?
or does i need to setup FUDforum in a special was so that google can read my pages ?
Thanx a lot
Kabir
|
|
|
|
Re: Does google index FUDforum [message #19874 is a reply to message #19841] |
Wed, 15 September 2004 05:09 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
If you use PATH_INFO style URLs google and any other spider for that matter will have easier time indexing your pages. That said I know that this very forum that does not use PATH_INFO is hit by googlebot fairly frequently across all URLs.
FUDforum Core Developer
|
|
|
|
|
|
Re: Does google index FUDforum [message #25191 is a reply to message #25190] |
Mon, 30 May 2005 23:42 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Well it is possible the site is IP blocked, for example if I try to access the URL my browser eventually times out. Same could be true when Google tries to connect to the site.
FUDforum Core Developer
|
|
|
|
|
|
Re: Does google index FUDforum [message #28874 is a reply to message #28870] |
Mon, 14 November 2005 16:38 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
You'll probably need to do this:
Replace all links to topics/messages with
/forum_url/subject
where subject string has undergone the following treatment:
preg_replace("![^A-Za-z0-9]!", "_", $subject)
Then use mod_rewrite to redirect those urls to a page that would fetch the actual message id based on the subject string and take the user to the appropriate page.
FUDforum Core Developer
|
|
|
|
Re: Does google index FUDforum [message #28879 is a reply to message #28878] |
Mon, 14 November 2005 18:13 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Well, there are many places that link to messages, I suspect the places you want to work with are: thread.tmpl (topic listing page) and msg.tmpl (message listing page)
FUDforum Core Developer
|
|
|
|