| :: |
| Author |
Message |
Darth Pincho PR1

Joined: 22 Sep 2006 Posts: 141
|
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 |
|
 |
|
 |
Darth Pincho PR1

Joined: 22 Sep 2006 Posts: 141
|
|
| Back to top |
|
 |
Darth Pincho PR1

Joined: 22 Sep 2006 Posts: 141
|
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 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15414
|
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
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 |
|
 |
Darth Pincho PR1

Joined: 22 Sep 2006 Posts: 141
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15414
|
|
| Back to top |
|
 |
Darth Pincho PR1

Joined: 22 Sep 2006 Posts: 141
|
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 |
|
 |
dcz Administrateur - Site Admin

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