2016-02-07 41 views
0

任何人都可以幫我嗎?Magento 2.0.2自動重定向到服務器上的本地主機

將magento 2.0.2文件上傳到live服務器並將數據庫導入PHPMYAdmin後,index現在會自動重定向到已經傳輸文件的localhost。我知道它需要改變的URL路徑,但沒有得到正確的地方,在magento 1.9數據庫表中更改路徑(core_config_data表),但如何更改magento 2.0.2中的正確路徑?

您的幫助將不勝感激:) 感謝名單

+0

至少找到了它,重定向已經解決了。 – Shento

回答

2

我知道你固定它,但在這裏我的解決方案,也許是幫助別人:
當你從當地去住,您打開域和需要告訴Magento它。一個簡單的方法是在CLI上:

# http:// or https://, and a trailing slash /. 
./bin/magento setup:store-config:set --base-url="http://your-domain.com/" 
./bin/magento setup:store-config:set --base-url-secure="https://your-domain.com/" 

# clear cache 
./bin/magento cache:flush 
相關問題