Codeigniter分页类 - 如何从URL中删除尾部斜杠

时间:2011-10-19 21:10:50

标签: php codeigniter pagination

我在CI的分页类中注意到以下行为:

我的初始页面(用作$config['base_url']):

http://www.example.com/forum

当我分页到第2页时(per_page = 10,offset = 10,total_rows = 100):

http://www.example.com/forum/10

当我回到第1页时:

http://www.example.com/forum/  <=====trailing slash

这个尾随斜杠正在弄乱页面中的几个Ajax命令。

知道如何让它消失吗?

1 个答案:

答案 0 :(得分:1)

您可以使用trim

trim( $the_url, '/' );