CodeIgniter使用相对链接附加URI段

时间:2014-05-14 18:35:01

标签: javascript php html apache codeigniter

我在页面底部有分页链接。当我点击链接时,我需要这样的URL:

http://localhost/controller/function/products/1     // <-- page number

但是相对链接替换了函数名后的查询字符串:

http://localhost/controller/function/1

如何将页码与查询字符串/products/一起附加?

注意:我需要相对链接,因此它们可以在页码之前使用任意数量的查询字符串,最后添加页码。

我的代码:

echo "<li><a href='$page_num'>$page_num</a></li>";

1 个答案:

答案 0 :(得分:0)

如果您需要保持相对链接,可以使用以下代码:

echo "<li><a href='products/$page_num'>$page_num</a></li>";