重定向到一个子页面作为燃料 CMS 网站的主页

redirect to a subpage as the homepage in a fuel CMS website

我是第一次使用 fuel CMS -- 我想知道如何在 /index.php 中设置重定向,所以当您导航到网站库 URL 时,您的重定向到/subpage/ 子页面将始终作为 home.

注意: 正常 PHP 重定向和元 html 重定向 DO NOT WORK。我只是得到 'redirect loop error' 我猜是由于 CMS 模块等的体系结构。即使在重定向之后,来自 index.phpheader.php 的文件也会被重新读取,所以你会陷入重定向.

任何熟悉该框架的人,任何指示都很棒,谢谢!

认为! (对于关心的人……或者更重要的是,对于不关心的大众!)

$config['aggressive_redirects'] = array(
                                    '/' => array('/solutions', TRUE, 302)
                                    );

通过文档.. http://docs.getfuelcms.com/general/redirects 让我们看看它的表现如何。