php - localhost to domain name.. Accessing the contents inside the 'resource' directory(laravel) -
i changed 'locahost' 'abcd.com' domain name , pointing 'public' directory of laravel application , working , when try access '/admin' folder inside 'resource/view' directory ,getting error 'notfoundhttpexception' .how fix not found exception ? appreciated .. thanks.
you trying access folder. don't see why why are getting error. when accessing /admin laravel thinks trying access /admin route web.php , it's not there. reason notfoundhttpexception
if want handle request anyway, in web.php add this
route::get('/admin','controller@method');
Comments
Post a Comment