I Followed a tutorial of laravel/voyager installation. However, after a successful installation of voyager, I can't access the admin url. 404 error.
It's WSL2 on windows 10, with ubuntu 20.
Classic LAMP.
Laravel8
In the tuturial there is an instruction to change the port of the apache to 8000, something that kind of confusing me - since it will mass with the website, so i didn't.. i assume that this is part of the issue.
The site is directed to a virtual host as followed:
<VirtualHost *:80>
ServerName xsite
DocumentRoot /mnt/d/dev/laravel/xsite/public
<Directory /mnt/d/dev/laravel/xsite/public>
Options Indexes MultiViews
AllowOverride None
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
How do i resolve it?