Opencart 2.3.0.2如何更改默认index.php?route = common / home到index.php?route = magikblog / article

时间:2016-11-06 04:35:04

标签: php opencart

如果有人可以提供帮助我有问题 我想将默认index.php?route=common/home更改为index.php?route=magikblog/article我希望访问者在访问我的网站的另一部分之前先访问我的博客。 请帮忙!谢谢

3 个答案:

答案 0 :(得分:1)

在配置文件中设置的“普通/家庭”默认路由:

  

/system/config/default.php

在默认动作变量下设置

// Actions
$_['action_default'] = 'common/home';

只需将路线更改为

// Actions
$_['action_default'] = 'magikblog/article';

或其他任何首选路由

答案 1 :(得分:0)

文件 controller / common / home.php

$ this-> redirect(HTTP_SERVER。'index.php?route = magikblog / article'); 它只是一个小钩子,但可以解决你的问题

答案 2 :(得分:0)

Mark的回答很好,但我建议您将文章添加到主页,不要更改重定向。如果您将来不打算更改文本,可以使用模块(如果有的话)或只是在主页上写一部分文本。