gpt4 book ai didi

php - 更改模块的 uri 而无需在 PyroCMS 中重命名类

转载 作者:行者123 更新时间:2023-12-04 18:19:50 25 4
gpt4 key购买 nike

在不重命名类的情况下更改模块的 uri 的最佳方法是什么。例如,我希望博客模块显示:

/博客 /post-title ->/新闻 /帖子标题

路线.php?

最佳答案

首先我添加到routes.php。

$route['news/([0-9]+)/([0-9]+)/([a-zA-Z0-9_-]+)'] = 'blog/$1/$2/$3';



然后为了确保正确的链接,我将它添加到博客 plugin.php。
foreach ($posts as &$post)
{
$post->url = str_replace('blog/', 'news/', $post->url);
}

关于php - 更改模块的 uri 而无需在 PyroCMS 中重命名类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10899376/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com