phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
Implementing this system
Goto page Previous  1, 2
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB mod Rewrite
::  
Author Message
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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. Very Happy

Now off to do zero-dupe!
Back to top
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

Implementing this systemPosted: Tue Feb 20, 2007 1:32 pm    Post subject: Re: Implementing this system

well, you should still disallow post and profile urls, but the zero dupe make it useless to add the viewtopic, viewforum and index disallows.

++

_________________
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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

Implementing this systemPosted: 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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: 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
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

Implementing this systemPosted: Thu Feb 22, 2007 11:05 am    Post subject: Re: Implementing this system

No you don't Wink

That's the :

Code:
are not necessary any more


meaning Wink

++

_________________
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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 87

Implementing this systemPosted: Thu Feb 22, 2007 2:59 pm    Post subject: Re: Implementing this system

dcz wrote:
No you don't Wink

That's the :

Code:
are not necessary any more


meaning Wink

++


i feel stupid now. My brain stopped at the three php files. Thanks!
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14403

Implementing this systemPosted: Thu Feb 22, 2007 3:30 pm    Post subject: Re: Implementing this system

Don't worry, my brain does stops working now and then too Laughing

_________________
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
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB mod Rewrite
Page 2 of 2 Goto page Previous  1, 2

Navigation Similar Topics

Jump to: