You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I install this project by following classic installation instruction. This project is working fine while i run via php artisan serve and browse by 'http://127.0.0.1:8000/'.
So the way I would approach this is by putting a symbolic link to benotes inside the directory that is being served as root by your webserver.
So something similar to cd my_directory && ln -s benotes your/benotes/installation/path/.../public
This allows you to use it without changing any code.
I install this project by following classic installation instruction. This project is working fine while i run via
php artisan serve
and browse by 'http://127.0.0.1:8000/'.But i want to run this project on local by browsing 'http://localhost/my_directory/benotes' and it gives me error.
I add
<base/>
inapp.blade.php
file, use css,js resource withasset()
and then login page appear successfully.But api call
http://localhost/api/auth/me
get error 'Not found'. Here requested url is wrong. There have no 'my_directory/benotes'.I call modified url
http://localhost/my_directory/benotes/api/auth/me
from postman and got error 'Not Found'.How can i resolve this and run project perfectly.
The text was updated successfully, but these errors were encountered: