无法在localhost上找到Magento 2安装

时间:2018-01-25 09:11:21

标签: magento installation localhost

我用这个命令运行我的magento安装:

php bin/magento setup:install --base-url='http://127.0.0.1/mage2'
 --db-host='localhost' --db-name=*** --db-user=*** 
--db-password=*** --admin-firstname='System' --admin-lastname='Administrator' 
--admin-email='admin@example.com' --admin-user=*** 
--admin-password=*** --language='sv_SE' --currency='SEK' 
--timezone='America/Chicago'

我预计我的Magento 2网站会显示在http://www.my-magento-host.com/mage2,但它是空的。 如果我转到root /(magento2-folder)/ public_html,文件就在那里。我尝试过的所有php bin / magento命令都可以使用 我只是不知道我的网站在哪里......

我的网络浏览器显示以下错误:
没找到
在此服务器上找不到请求的URL /index.php。

Apache / 2.4.7(Ubuntu)服务器(我的服务器ip)端口****

1 个答案:

答案 0 :(得分:0)

正确的基本网址不是http://127.0.0.1/ 它的语法如下http://111.111.111.111/ 因此,您需要输入base-url的serverip或域。

对于我的情况,正确的基本网址为http://myserverip/mage2