Magento开源2.3-无法加载CSS和JS

时间:2019-01-30 06:49:19

标签: php magento magento-2.0 magento-2.3

我成功安装了Magento 2.3,但是当键入http://localhost/Magento2/时,我得到一个空白页面,像这样:enter image description here

,这些是在控制台中发现的错误: enter image description here

管理面板上也面临相同的问题。我当前的PHP版本是7.2.14。

1 个答案:

答案 0 :(得分:0)

您不能在Magento 2中将http://localhost/用作域名,至少应使用http://localhost.com/

  1. 在Docker / XAMP / MAMP / WAMP中更改您的vHost ...以匹配您的新域名,例如http://localhost.com/;

  2. 使用sudo权限编辑主机文件

    • Debian / MacOS:/etc/hosts

    • Windows:C:\Windows\System32\drivers\etc\hosts

  3. 在文件的底部,添加以下内容:127.0.0.1 localhost.com

  4. 转到您的Magento数据库并运行以下查询:

UPDATE `core_config_data` SET `value`='http://localhost.com/' WHERE `value`='http://localhost/';
  1. 最后,使用命令行:
cd /YOUR/PROJECT/PATH
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
  1. 转到http://localhost.com/(或http://localhost.com/Magento2/,具体取决于您的配置),然后检查是否一切正常。