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.htmlI 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.htmlMy 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?