Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 Opencart 1.5.1.3。
登录后,我会自动进入我的帐户页面:
index.php?route=account/account
我希望它转到主页:
index.php?route=common/home
这可以从管理面板吗?如果不是,我需要修改什么代码?
打开
catalog/controller/account/login.php
寻找
$this->redirect($this->url->link('account/account', '', 'SSL'));
用。。。来代替
$this->redirect($this->url->link('common/home'));