Currently my forums have all forums and threads rewritten to things like
http://domain.com/f23
or
http://domain.com/t123.html
hence the .htaccess looks like
RewriteEngine on
Options +FollowSymLinks
RewriteRule ^t([0-9]+).html$ showthread.php?t=$1 [L]
RewriteRule ^lastpostinthread([0-9]+).html$ showthread.php?goto=lastpost&t=$1 [L]
RewriteRule ^newpostinthread([0-9]+).html$ showthread.php?goto=newpost&t=$1 [L]
RewriteRule ^f([0-9]+)$ forumdisplay.php?f=$1 [L]
RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
(I'm using sitemaps)
My question is, will I be able to keep this rewrite rule while using vbseo? I currently have over 160,000 pages indexed in google and I certainly wouldn't want dead links. I understand the actual internal linking of the pages in the forums would change.
Basically, can you have two rewrite rules for one url?



LinkBack URL
About LinkBacks





Reply With Quote
