View Single Post
Old 09-08-2006, 01:28 PM   #1 (permalink)
CheebaHawk
Inactive
 
CheebaHawk's Avatar
 
Join Date: 08-04-06
Posts: 74
iTrader: 0 / 0%
Latest Blog:
None

CheebaHawk is liked by many
Would someone please help, my SERPs are a mess.

Hey everyone, I feel like I am extremely lost right now...I have been having trouble with google and one of the SEO mods I installed on my Phpbb. I installed a static URL mod, using a Mod_rewrite. From my understanding the mod was supposed to change the dynamic urls ex.../forum/viewforum.php?F=11 to something like /forum/forum-11.html. Also it was supposed to change /forum/viewtopic.php?f=342 to /forum/about-342.html.

That part that I am confused about is that google keeps finding my pages like this /forum/post-342...I tried to dis-alow this style URL in my robots.txt because I wanted my pages to be indexed as /forum/about-324.html...Now, google has removed all of my SERPs that are formated with the "about" url and removed all of the SERPS with the "post-232.html" URLs?? Would someone please look at my .httaccess file and my robots.txt file below and tell me if there are any discrepancies. I would really appreciate it, the httaccess code is really foreign to me, and I think that there is something wrong with my setup...

htaccess...
Code:
RewriteEngine On RewriteRule ^sitemap.xml$ sitemap.php [L] RewriteRule ^forum-([0-9]+).xml$ sitemap.php?fid=$1 [L] RewriteRule ^forums.* index.php [L,NC] RewriteRule ^post-([0-9]*).html&highlight=([a-zA-Z0-9]*) viewtopic.php?p=$1&highlight=$2 [L,NC] RewriteRule ^post-([0-9]*).* viewtopic.php?p=$1 [L,NC] RewriteRule ^view-poll([0-9]*)-([0-9]*)-([a-zA-Z]*).* viewtopic.php?t=$1&postdays=$2&postorder=$3&vote=viewresult [L,NC] RewriteRule ^about([0-9]*).html&highlight=([a-zA-Z0-9]*) viewtopic.php?t=$1&highlight=$2 [L,NC] RewriteRule ^about([0-9]*).html&view=newest viewtopic.php?t=$1&view=newest [L,NC] RewriteRule ^about([0-9]*)-([0-9]*)-([a-zA-Z]*)-([0-9]*).* viewtopic.php?t=$1&postdays=$2&postorder=$3&start=$4 [L,NC] RewriteRule ^about([0-9]*)-([0-9]*).* viewtopic.php?t=$1&start=$2 [L,NC] RewriteRule ^about([0-9]*).* viewtopic.php?t=$1 [L,NC] RewriteRule ^about([0-9]*).html viewtopic.php?t=$1&start=$2&postdays=$3&postorder=$4&highlight=$5 [L,NC] RewriteRule ^mark-forum([0-9]*).html* viewforum.php?f=$1&mark=topics [L,NC] RewriteRule ^updates-topic([0-9]*).html* viewtopic.php?t=$1&watch=topic [L,NC] RewriteRule ^stop-updates-topic([0-9]*).html* viewtopic.php?t=$1&unwatch=topic [L,NC] RewriteRule ^forum-([0-9]*).html viewforum.php?f=$1 [L,NC] RewriteRule ^forum-([0-9]*).* viewforum.php?f=$1 [L,NC] RewriteRule ^topic-([0-9]*)-([0-9]*)-([0-9]*).* viewforum.php?f=$1&topicdays=$2&start=$3 [L,NC] RewriteRule ^ptopic([0-9]*).* viewtopic.php?t=$1&view=previous [L,NC] RewriteRule ^ntopic([0-9]*).* viewtopic.php?t=$1&view=next [L,NC]
Robotx.txt...
Code:
user-agent: * Disallow: /forum/post-*.html$ Disallow: /forum/updates-topic.html*$ Disallow: /forum/stop-updates-topic.html*$ Disallow: /forum/ptopic*.html$ Disallow: /forum/ntopic*.html$ Disallow: /forum/viewforum.php?t=* Disallow: /forum/viewtopic.php?t=* Disallow: /forum/admin/ Disallow: /forum/images/ Disallow: /forum/includes/ Disallow: /forum/language/ Disallow: /forum/templates/ Disallow: /forum/common.php Disallow: /forum/groupcp.php Disallow: /forum/memberlist.php Disallow: /forum/modcp.php Disallow: /forum/posting.php Disallow: /forum/profile.php Disallow: /forum/privmsg.php Disallow: /forum/viewonline.php Disallow: /forum/faq.php Disallow: /forum/updates-topic Disallow: /forum/stop-updates-topic Disallow: /forum/ptopic Disallow: /forum/ntopic Disallow: /post-
Thanks for the help in advance, I really appreciate it!
CheebaHawk is offline   Reply With Quote