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

发布于 2024-12-11 01:19:49 字数 413 浏览 0 评论 0原文

我注意到 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 命令。

知道如何让它消失吗?

I've noticed the following behavior in CI's pagination class:

My initial page (used as $config['base_url']):

http://www.example.com/forum

When I paginate to page 2 (per_page = 10, offset = 10, total_rows = 100):

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

When I go back to Page 1:

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

This trailing slash is messing up several Ajax commands in the page.

Any idea how to make it go away?

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

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

发布评论

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

评论(1

夜雨飘雪 2024-12-18 01:19:49

您可以使用 trim 来实现:

trim( $the_url, '/' );

You can use trim for that:

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