我需要帮助我有页面导航 在vbuilletin 4.1.1的页面导航中看起来像这样:
First Previous,1,2,Next Last
当我点击第2页时,网址显示如下:
http://localhost/vbs/forumdisplay.php?f=2&page=2&order=desc
这对我很好,但我想要的是当我点击 返回页码1或单击“第一个”按钮
我不希望它显示这样的网址:
http://localhost/vbs/forumdisplay.php?f=1&page=2&order=desc
我想要的是显示原始网址 线程的第一页或像这样的帖子
http://localhost/vbs/forumdisplay.php?f=2
我试图修改pagenave模板,但没有成功 PLZ任何人都可以告诉我我能做些什么吗?
答案 0 :(得分:0)
if((int)$_GET['f']<2){
header('Location: http://localhost/vbs/forumdisplay.php?f=2');
die();
}
把它放在页面顶部......在任何html输出之前。