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