I have a support ticket open, but also do want to check and see if others are facing this issue or if I'm the only one.
I seem to have a problem with the link that is supposed to take users to the newest post in the thread. This problem seems to happen on threads with more than one page...
For legacy reasons, the link is as follows:
http://www.site.com/forum/newpostinthread139831.html
When I click on this, I get
Directed to http://www.site.com/forum/showthread.php?p=990331
This does not scroll down to the appropriate part of the page.
Which should be http://www.site.com/forum/thread139831-3.html#post990331
Any ideas what I'm doing wrong? The forum rewrite rule for new post in thread is set to
newpostinthread[thread_id].html
I'm sure this is a configuration issue on my part .. just looking for some guidance on what I could be doing wrong.
My server runs nginx and the rule is as follows:
location /forum/ {
rewrite ^/forum/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last;
rewrite ^/forum/getnew.html$ /forum/search.php?do=getnew permanent;
rewrite ^/forum/getnew([0-9]+).html$ /forum/search.php?do=getnew&f=$1 permanent;
rewrite ^/forum/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 permanent;
if (!-e $request_filename) {
rewrite ^/forum/(.*)$ /forum/vbseo.php last;
}
if ($request_filename ~ "\.php$" ) {
rewrite ^/forum/(.*)$ /forum/vbseo.php last;
}
}
I do have a response saying "vBulletin 4 doesn't support showpost urls thats why that setting will not function for vB 4 specific" which I'm waiting on clarification.
How do you handle the newpost in thread link / redirection?


LinkBack URL
About LinkBacks





Reply With Quote
glad it works now.
