Menu

Can't see Admin Login Page in Magento 2

We have problem empty page when visit backend or frontend can't see logo and break layout. Problem due magento can't loading css and js. You can fixed by change as follow

  1. Open this file:
    vendor\magento\framework\View\Element\Template\File\Validator.php
  2. Find code(around line 138 on version 2.3):
    $realPath = $this->fileDriver->getRealPath($path)
  3. Replace it with this line:
    $realPath = str_replace("\\", "/", $this->fileDriver->getRealPath($path));