Very confused with all SEO steps. Any help?

Discussions about SEO principles. Learn how to get better indexed.

Moderator: Moderators

Postby Darth Pincho » Wed Oct 04, 2006 5:50 pm

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: Select all
#########################################################
# 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/
Darth Pincho
PR1
PR1
 
Posts: 146
Joined: Fri Sep 22, 2006 8:37 pm

Advertisement

Postby Darth Pincho » Wed Oct 04, 2006 6:04 pm

Problem solved. :-) 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/
Darth Pincho
PR1
PR1
 
Posts: 146
Joined: Fri Sep 22, 2006 8:37 pm

Postby Darth Pincho » Wed Oct 04, 2006 6:28 pm

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

I put this in my .htacces

Code: Select all
#########################################################
# 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- ... -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: Select all
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/
Darth Pincho
PR1
PR1
 
Posts: 146
Joined: Fri Sep 22, 2006 8:37 pm

Postby dcz » Wed Oct 04, 2006 8:41 pm

dcz wrote:For mx sitemaps, everything is ok in your sessions.php, I think you just tried to uncomment real comments ;)
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 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 21238
Joined: Fri Apr 28, 2006 9:03 pm

Postby Darth Pincho » Wed Oct 04, 2006 9:13 pm

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- ... -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/
Darth Pincho
PR1
PR1
 
Posts: 146
Joined: Fri Sep 22, 2006 8:37 pm

Postby dcz » Wed Oct 04, 2006 9:31 pm

dcz wrote:
dcz wrote:you need to add the rewriterules provided here



I really mean it ;)

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 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 21238
Joined: Fri Apr 28, 2006 9:03 pm

Postby Darth Pincho » Wed Oct 04, 2006 11:22 pm

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/
Darth Pincho
PR1
PR1
 
Posts: 146
Joined: Fri Sep 22, 2006 8:37 pm

Postby dcz » Thu Oct 05, 2006 8:23 am

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 ;)

++
Useful links :
SEO Forum || SEO Directory || SEO phpBB || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 21238
Joined: Fri Apr 28, 2006 9:03 pm

Previous

Return to SEO Principles

Who is online

Users browsing this forum: No registered users and 5 guests