如何更改 pagenav 第一个数字以链接到页面线程或帖子的原始 url

发布于 2024-10-16 08:33:33 字数 526 浏览 2 评论 0原文

你好,我需要帮助,我有页面导航 在 vbuilletin 4.1.1 的页面导航中看起来像这样:

First Previous ,1 , 2, Next Last

当我单击页面 2 时,网址显示如下:

http://localhost/vbs/forumdisplay.php?f =2&page=2&order=desc

这对我来说没问题,但我想要的是当我点击时 返回页码 1 或单击“第一个”按钮,

我不希望它显示这样的 url:

http://localhost/vbs/forumdisplay.php?f=1&page=2&order =desc

我想要的是显示原始网址 线程的首页或像这样的帖子

http://localhost/vbs/forumdisplay.php?f=2

我尝试修改 pagenave 模板,但没有成功 请问有人可以告诉我我能做什么吗?

hi i need help i have page navigation
look like this in the page navigation in vbuilletin 4.1.1:

First Previous ,1 , 2, Next Last

when i click the page 2 the url shows like that :

http://localhost/vbs/forumdisplay.php?f=2&page=2&order=desc

and that is fine with me but what i want is when i click
back to the page number 1 or click the "first" button

i don't want it to show the url like this :

http://localhost/vbs/forumdisplay.php?f=1&page=2&order=desc

what i want is to show the original url of
the first page for the thread or the post like this

http://localhost/vbs/forumdisplay.php?f=2

i tried to modify the pagenave template but with no success
plz can anyone advice me what i can do ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞别 2024-10-23 08:33:33
if((int)$_GET['f']<2){
   header('Location: http://localhost/vbs/forumdisplay.php?f=2');
   die();
}

将其放在页面顶部...在任何 html 输出之前。

if((int)$_GET['f']<2){
   header('Location: http://localhost/vbs/forumdisplay.php?f=2');
   die();
}

put this on top of the page... before any html output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文