Hi, I think that I have made a lot of progress with the problems that I was having earlier (ie. only the first 'last thread' on forum page would be rewritten and also if multi page thread, page 1 worked but others directed to wrong threads).
What I did was use the updated code from Immortal found here:
https://vborg.vbsupport.ru/showpost....&postcount=316
I updated the code but also received the parse error that another member had mentioned. I saw that it looks like a previous } was no longer needed.
So I found:
Code:
#------------------------------
# misc pages
#------------------------------
$output = str_replace("search.php?do=getnew","search-getnew.html",$output);
$output = str_replace("search.php?do=getdaily","search-getdaily.html",$output);
$output = str_replace("forumdisplay.php?do=markread","markread.html",$output);
}
and just removed the } and that got rid of the parse error.
------------------------------------------------
Now everything is rewritten appropriately except multi pages aren't working. If you click on a page 2 link I get a page cannot be displayed message. I think it has something to do with my .htaccess file although I DO see the line that should take care of this.
Here are the links to a 1st and 2nd page of a multi page thread.
Before using vRewrite:
Page 1 link:
http://www.420boards.com/showthread.php?t=385
Page 2 link:
http://www.420boards.com/showthread.php?t=385&page=2
After vRewrite (multi page thread)
Page1 link:
http://www.420boards.com/smokers-lou...rbowl-385.html
Page2 link: (page cannot be displayed but same link as before rewrite)
http://www.420boards.com/showthread.php?t=385&page=2
Here is the htaccess file that I am using
Code:
RewriteEngine On
RewriteBase /
# Default
RewriteRule ^f-(.*)-page-(.*)-(.*).html forumdisplay.php?f=$1&page=$2&order=$3
RewriteRule ^f-(.*)-(.*).html forumdisplay.php?f=$2 [L]
RewriteRule ^u-(.*)-(.*).html member.php?u=$2 [L]
RewriteRule ^memberlist-(.*)-(.*)-(.*)-(.*).html memberlist.php?ltr=$1&pp=$2&sort=$3&order=$4 [L]
RewriteRule ^(.*)/t-(.*)-(.*).html showthread.php?t=$3&is_vrewrite [L]
RewriteRule ^(.*)-(.*)-lastpost.html showthread.php?goto=lastpost&t=$2 [L]
RewriteRule ^(.*)-(.*)-newpost.html showthread.php?goto=newpost&t=$2 [L]
RewriteRule ^(.*)-(.*)-lastpost.html showthread.php?goto=lastpost&t=$2 [L]
RewriteRule ^(.*)-(.*)-(.*).html showthread.php?goto=$3&t=$2 [L]
RewriteRule ^(.*)/t-(.*)-(.*)-page-(.*).html showthread.php?t=$3&page=$4 [L]
RewriteRule ^markread.html forumdisplay.php?do=markread [L]
RewriteRule ^(.*)/p-(.*)-(.*).html showthread.php?p=$3 [L]
RewriteRule ^print-(.*)-(.*).html printthread.php?t=$2 [L]
RewriteRule ^sendtofriend-(.*)-(.*).html sendmessage.php?do=sendtofriend&t=$2 [L]
RewriteRule ^search-(.*).html search.php?do=$1 [L]
RewriteRule ^(.*)-(.*)/newthread.php newthread.php?do=newthread&f=$2[L]
RewriteRule ^(.*)/newpostnoquote-(.*).php newreply.php?do=newreply&noquote=1&p=$2[L]
RewriteRule ^(.*)/newpost-(.*).php newreply.php?do=newreply&p=$2[L]
RewriteRule ^p-(.*).html showpost.php?p=$1&postcount=$1 [L]
# Other options
RewriteRule ^siteforums/(.*)-(.*).html forumdisplay.php?f=$2 [L]
RewriteRule ^members/(.*)-(.*).html member.php?u=$2 [L]
RewriteRule ^(.*)/(.*)-(.*).html showthread.php?t=$3 [L]
# Sitemap
RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]