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  
 
   
Very confused with all SEO steps. Any help?
Goto page Previous  1, 2
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » SEO Principles
::  
Author Message
Darth Pincho
PR1
PR1


Joined: 22 Sep 2006
Posts: 141

Very confused with all SEO steps. Any help?Posted: Wed Oct 04, 2006 5:50 pm    Post subject: Re: Very confused with all SEO steps. Any help?

dcz wrote:

You have chosen the mixed one which is perfectly installed on your board.
Mx Google sitemaps is working great too, with the correct mixed URLs. You should just implement the additional rewriterules provided in the contrib's .htaccess of the release and activate mod rewrite for Google sitemaps (by the time it will fully work, you should unregister you sitemap at your Google Account, better nothing than something wrong).++


You mean this ones?

Code:
#########################################################
# MX GG_SITEMAPS REWRITE RULES            #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/02/22
########################

Options +FollowSymlinks
RewriteEngine on
RewriteBase /

########################################################
# phpBB
RewriteRule ^sitemaps.xml$ /sitemap.php [L]
RewriteRule ^forum-sitemap-([0-9]+).xml$ /sitemap.php?fid=$1 [L]
RewriteRule ^sitemap-forum.xml$ /sitemap.php?forum [L]
# mxBB
RewriteRule ^mx-sitemap.xml$ /sitemap.php?mx [L]
# KB
RewriteRule ^kb-sitemap-([0-9]+).xml$ /sitemap.php?kbid=$1 [L]
RewriteRule ^sitemap-kbcat.xml$ /sitemap.php?kbcat [L]

#########################################################
# END GG_SITEMAPS REWRITE RULES            #
#########################################################


But my forum is located under /foro/ folder. i have to modify the path of the rules? to:

RewriteRule ^foro/sitemaps.xml$ /foro/sitemap.php [L]

My sitemap.php file is in http://www.tupincho.net/foro/sitemap.php

_________________
Webmaster at:
http://www.tupincho.net
Discussion board at:
http://www.tupincho.net/foro/
Back to top
Visit poster's website
Darth Pincho
PR1
PR1


Joined: 22 Sep 2006
Posts: 141

Very confused with all SEO steps. Any help?Posted: Wed Oct 04, 2006 6:04 pm    Post subject: Re: Very confused with all SEO steps. Any help?

Problem solved. Smile i try harder and i made it work. Now my mx gg sitemaps are working fully in mod rewrite.

Please check it here:

http://www.tupincho.net/foro/sitemap.php

And:
http://www.tupincho.net/foro/forum-sitemap-16.xml

I use the rewrite rules in the previous post but adding /foro/ folder to it.

_________________
Webmaster at:
http://www.tupincho.net
Discussion board at:
http://www.tupincho.net/foro/
Back to top
Visit poster's website
Darth Pincho
PR1
PR1


Joined: 22 Sep 2006
Posts: 141

Very confused with all SEO steps. Any help?Posted: Wed Oct 04, 2006 6:28 pm    Post subject: Re: Very confused with all SEO steps. Any help?

Ok once solved the gg ms sitemap issues i pass to fight with mx sitemaps.

I put this in my .htacces

Code:
#########################################################
# MX SITEMAPS REWRITE RULES            #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/04/28
########################

########################################################
RewriteRule ^foro/sitemaps([0-9]+)\.html$ /foro/sitemaps.php?c=$1 [QSA,L]
RewriteRule ^foro/sitemaps\.html$ /foro/sitemaps.php [QSA,L]
RewriteRule ^foro/forum-m\ap\.html$ /foro/sitemaps.php?fim [QSA,L]
RewriteRule ^foro/forum-m\ap([0-9]+)-([0-9]+)\.html$ /foro/sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^foro/forum-m\ap([0-9]+)\.html$ /foro/sitemaps.php?fmp=$1 [QSA,L]
#########################################################
# END SITEMAPS REWRITE RULES            #
#########################################################


But i get 404 error when i click this:

http://www.tupincho.net/foro/opiniones-generales-de-los-usuarios-fmp1.html

I think it is because there is some rewrite rule missing. Some realted with the category url injection.

Tha forum map is at:
http://www.tupincho.net/foro/forum-map.html

My complete .htaccess file looks like this:

Code:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^tupincho\.net$ [NC]
RewriteRule ^(.*) http://www.tupincho.net/$1 [QSA,L,R=301]

RewriteBase /


#########################################################
# PHPBB SEO REWRITE RULES            #
#########################################################
# AUTHOR : DCZ http://www.phpbb-seo.com/
# STARTED : 01/2006
#####################################################
# FORUMS PAGES
########################
# FORUM PROTECTION RULE
RewriteRule ^foro/.+/([^/]+\.html)$ /foro/index.php [R=301,L]
# CATEGORIES
RewriteRule ^foro/.+-vc([0-9]+)\.html$ /foro/index.php?c=$1 [QSA,L]
# PAGINATED FORUM
RewriteRule ^foro/.+-vf([0-9]+)-([0-9]+)\.html$ /foro/viewforum.php?f=$1&start=$2 [QSA,L]
# FORUM
RewriteRule ^foro/.+-vf([0-9]+)\.html$ /foro/viewforum.php?f=$1 [QSA,L]
# PAGINATED TOPIC
RewriteRule ^foro/topic([0-9]+)-([0-9]+)\.html$ /foro/viewtopic.php?t=$1&start=$2 [QSA,L]
# TOPIC
RewriteRule ^foro/topic([0-9]+)\.html$ /foro/viewtopic.php?t=$1 [QSA,L]
# POST
RewriteRule ^foro/post([0-9]+)\.html$ /foro/viewtopic.php?p=$1 [QSA,L]
#PROFILES
RewriteRule ^foro/member([0-9]+)\.html$ /foro/profile.php?mode=viewprofile&u=$1 [QSA,L]
# END PHPBB PAGES
#####################################################

#########################################################
# MX GG_SITEMAPS REWRITE RULES            #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/02/22
########################

########################################################
# phpBB
RewriteRule ^foro/sitemaps.xml$ /foro/sitemap.php [L]
RewriteRule ^foro/forum-sitemap-([0-9]+).xml$ /foro/sitemap.php?fid=$1 [L]
RewriteRule ^foro/sitemap-forum.xml$ /foro/sitemap.php?forum [L]
# mxBB
RewriteRule ^foro/mx-sitemap.xml$ /foro/sitemap.php?mx [L]
# KB
RewriteRule ^foro/kb-sitemap-([0-9]+).xml$ /foro/sitemap.php?kbid=$1 [L]
RewriteRule ^foro/sitemap-kbcat.xml$ /foro/sitemap.php?kbcat [L]

#########################################################
# END GG_SITEMAPS REWRITE RULES            #
#########################################################


#########################################################
# MX SITEMAPS REWRITE RULES            #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/04/28
########################

########################################################
RewriteRule ^foro/sitemaps([0-9]+)\.html$ /foro/sitemaps.php?c=$1 [QSA,L]
RewriteRule ^foro/sitemaps\.html$ /foro/sitemaps.php [QSA,L]
RewriteRule ^foro/forum-m\ap\.html$ /foro/sitemaps.php?fim [QSA,L]
RewriteRule ^foro/forum-m\ap([0-9]+)-([0-9]+)\.html$ /foro/sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^foro/forum-m\ap([0-9]+)\.html$ /foro/sitemaps.php?fmp=$1 [QSA,L]
#########################################################
# END SITEMAPS REWRITE RULES            #
#########################################################


What do you think?

_________________
Webmaster at:
http://www.tupincho.net
Discussion board at:
http://www.tupincho.net/foro/
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15414

Very confused with all SEO steps. Any help?Posted: Wed Oct 04, 2006 8:41 pm    Post subject: Re: Very confused with all SEO steps. Any help?

dcz wrote:

For mx sitemaps, everything is ok in your sessions.php, I think you just tried to uncomment real comments Wink
So you need to add the rewriterules provided here and to activate mod rewrite for the mod as well in ACP. Install as well the auto link add on from this link, it will create links to your sitemaps.


You really need these one instead, sorry, this mod need reorganisation, but it's worth installing.

++

_________________
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
Darth Pincho
PR1
PR1


Joined: 22 Sep 2006
Posts: 141

Very confused with all SEO steps. Any help?Posted: Wed Oct 04, 2006 9:13 pm    Post subject: Re: Very confused with all SEO steps. Any help?

Jejej i think you get confused with my bad english and too many questions.

Sitemaps here: http://www.tupincho.net/foro/sitemaps.html

Forum map here: http://www.tupincho.net/foro/forum-map.html

Everything working fine now. BUT try to acces the link called opiniones generales de los usuarios in forum-map.html

the link is to: http://www.tupincho.net/foro/opiniones-generales-de-los-usuarios-fmp1.html

Why i get 404 when i click that link? some rule missing? is one problem related with topic title injection in the URL.

_________________
Webmaster at:
http://www.tupincho.net
Discussion board at:
http://www.tupincho.net/foro/
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15414

Very confused with all SEO steps. Any help?Posted: Wed Oct 04, 2006 9:31 pm    Post subject: Re: Very confused with all SEO steps. Any help?

dcz wrote:
dcz wrote:

you need to add the rewriterules provided here



I really mean it Wink

You need the rewriterules provided in the post where the link is pointing instead of the ones provided in the package. I know this is confusing, things will be sorted out soon.

++

_________________
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
Darth Pincho
PR1
PR1


Joined: 22 Sep 2006
Posts: 141

Very confused with all SEO steps. Any help?Posted: Wed Oct 04, 2006 11:22 pm    Post subject: Re: Very confused with all SEO steps. Any help?

Ok now works fine. Problem solved. Right now i have fully functional 4 plugins of yours:

mx google sitemap
mx sitemaps
mod rewrite mixed
www issue solved

im having some troubles with yahoo submit your site mod. Vanilla URL are the outputed ones.

Next step?

Dynamic meta tags?

_________________
Webmaster at:
http://www.tupincho.net
Discussion board at:
http://www.tupincho.net/foro/
Back to top
Visit poster's website
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 15414

Very confused with all SEO steps. Any help?Posted: Thu Oct 05, 2006 8:23 am    Post subject: Re: Very confused with all SEO steps. Any help?

Yep, dynamic meta tags is great, not that it will SEO to much but it will make you site better spidered as there are still relevant infos in there 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
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » SEO Principles
Page 2 of 2 Goto page Previous  1, 2

Navigation Similar Topics

Jump to: