| :: |
| Author |
Message |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Mon Feb 19, 2007 11:53 pm Post subject: Re: Implementing this system |
|
|
SWEET! It works great! Thanks a ton for your help!
Is it possible to instead of "topicxx.html" be like "my-custom-name-topicxx.html" Basically I am wondering that if I put my sites main topic in that custom area, would that help SEO by inserting my main keyword into the topic url?
I would define "my-custom-name" somewhere (where ever topicxx.html is defined)
or maybe "the-forum-name-topicxx.html" Any ideas?
Also, I noticed in the install file on the list of files to edit, you are missing common.php. Thought you would like to know.
Now off to do zero-dupe! |
|
|
| Back to top |
|
 |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Tue Feb 20, 2007 12:36 am Post subject: Re: Implementing this system |
|
|
| dcz wrote: | if you're talking about the phpBB fetch all mod, well there will be some small patches to apply on the code you're fetching, but it's no big deal.
At first, before we patch them, some mods and add on can output unrewritten URLs.
And you got it right, it's no big deal to have some left overs at first, if you install the zero duplicate. They'll all get http 301 redirected, as per with your old vanilla urls.
The redirection are quite easy to deal with as long as the zero dupe is installed properly. Google won't have problems about it. Example.
++ |
Ok, I am having issues with the phpbb fetch all script on my homepage because the url's are leaving out the path to my forum now. What patches do I need to add?
Thanks |
|
|
| Back to top |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Tue Feb 20, 2007 12:59 am Post subject: Re: Implementing this system |
|
|
ok, i fiddled with the code for phpbb fetch all and got it to work.
I'll play with more things and I'm sure i'll have more questions soon. |
|
|
| Back to top |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Tue Feb 20, 2007 1:19 am Post subject: Re: Implementing this system |
|
|
| I swear that when I first was looking into this there were edits needed for robots.txt? Is this no longer something that needs to be done? |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Wed Feb 21, 2007 2:31 am Post subject: Re: Implementing this system |
|
|
| dcz wrote: | well, you should still disallow post and profile urls, but the zero dupe make it useless to add the viewtopic, viewforum and index disallows.
++ |
do you have an example of a robots.txt that would be a good one to use for a phpbb forum with mod_rewrite and zero_dupe?
thanks again for your time, Chris |
|
|
| Back to top |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Wed Feb 21, 2007 3:06 am Post subject: Re: Implementing this system |
|
|
one more question, is there an exact purpose for the .html ending? Could it be re-written to have a .php ending as well in the .htaccess file?
Would this cause any problems, have lower SEO power?
Thanks for your input, Chris |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
Posted: Wed Feb 21, 2007 8:52 am Post subject: Re: Implementing this system |
|
|
For the robots.txt with the zero dupe, disallow on index.php, viewforum.php and viewtopic.php are not necessary any more.
About suffixes, oh well .html it still the html suffix, but you can go for what you prefer, .htm or .php.
To do so you just need to update the seo_ext array in phpbb_sdeo_class.php :
| Code: | $this->seo_ext = array('cat' => '.html',
'forum' => '.html',
'topic' => '.html',
'user' => '.html',
'gz_ext' => '',
); |
and update the .htaccess accordingly.
SEO wise the suffix does not matter much. What really matter is to have gotten rid of parameters.
++ |
_________________ 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 |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Wed Feb 21, 2007 1:54 pm Post subject: Re: Implementing this system |
|
|
| thanks, my main reason for asking about the suffix is that my entire site (main site too) is all in .php and I wanted to keep it the same. Thanks |
|
|
| Back to top |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Thu Feb 22, 2007 4:34 am Post subject: Re: Implementing this system |
|
|
| dcz wrote: | | For the robots.txt with the zero dupe, disallow on index.php, viewforum.php and viewtopic.php are not necessary any more. |
wow, I am full of questions.
If I am actually using my index.php, do I really want to disallow it in my robots.txt?
Thanks |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
noworyz PR0

Joined: 08 Jan 2007 Posts: 87
|
Posted: Thu Feb 22, 2007 2:59 pm Post subject: Re: Implementing this system |
|
|
| dcz wrote: | No you don't
That's the :
| Code: | | are not necessary any more |
meaning
++ |
i feel stupid now. My brain stopped at the three php files. Thanks! |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14403
|
|
| Back to top |
|
 |
|
|