Codeigniter - 如何获取和更改 uri 段然后重定向?

发布于 2025-01-07 02:45:11 字数 320 浏览 2 评论 0原文

在我的 Web 应用程序中,我有一个如下所示的 url:

http://mydomain.com/search/index/list/for-sale/london/0/0/0/0

我想使用 uri 类并重定向以将 $this->uri->segment(3); 更改为 地图然后重定向。

因此,一旦重定向并且该段已更改,网址将如下所示:

/search/index/map/for-sale/london/0/0/0/0

我将如何执行此操作?

In my web application I have a url that looks like the following:

http://mydomain.com/search/index/list/for-sale/london/0/0/0/0

I would like to use the uri class and redirect to change $this->uri->segment(3); to map and then redirect.

So that once redirected and the segment has been changed the url would look like:

/search/index/map/for-sale/london/0/0/0/0

How would I go about doing this?

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

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

发布评论

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

评论(1

疾风者 2025-01-14 02:45:11

它可能需要一些额外的检查,但这将是一个简单的方法:

$segment_to_replace = "/".$this->uri->segment(3)."/";
$new_url = str_replace ($segment_to_replace, "/map/", current_url());

redirect ($new_url);

It may need some extra checks, but this would be a simple approach:

$segment_to_replace = "/".$this->uri->segment(3)."/";
$new_url = str_replace ($segment_to_replace, "/map/", current_url());

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