我使用opencart
,我想這樣做從這個重定向:打開車的htaccess
index.php?route=account/account to this
/account
多:
index.php?route=account/simpleedit ->
/simpleedit
從
index.php?route=account/xxx to (root)/xxx
所以我試圖做到這一點沒有硬打字的域名,因爲現在它在localhost
。
我使用opencart
,我想這樣做從這個重定向:打開車的htaccess
index.php?route=account/account to this
/account
多:
index.php?route=account/simpleedit ->
/simpleedit
從
index.php?route=account/xxx to (root)/xxx
所以我試圖做到這一點沒有硬打字的域名,因爲現在它在localhost
。
打開/catalog/controller/account/account.php
。查找
public function index()
在該線下方它把
$this->redirect($this->url->link('account/simpleedit/simpleedit', '', 'SSL'));
和保存。這將迫使它每次
它不會幫助我試過這個 – user2213609
啊重定向到該頁面。我剛剛回答,但認爲我誤解了你想要的東西。我提供的代碼重定向從帳戶鏈接到簡單的編輯頁面 –