-1

我正在使用opencart,我想从这里做重定向:

index.php?route=account/account to this
/account

和更多:

index.php?route=account/simpleedit ->
/simpleedit

所以从index.php?route=account/xxx to (root)/xxx

我试图在没有硬输入域的情况下做到这一点,因为现在它在localhost.

4

2 回答 2

0

您可以下载并安装此模块http://opencartforum.ru/files/file/554-seo-manager-dlia-ocstore-v153-i-v1541/

于 2013-07-02T21:04:23.047 回答
0

打开/catalog/controller/account/account.php. 寻找

public function index()

在它下面的行上

$this->redirect($this->url->link('account/simpleedit/simpleedit', '', 'SSL'));

并保存。这将迫使它每次都重定向到该页面

于 2013-06-28T10:18:19.647 回答