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

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -