php - Installed Laravel But Phpmyadmin has conflict with Laravel Routes -


i have installed laravel on windows. while accessing http://localhost:8000/phpmyadmin doesn't seem working since has kind of conflict laravel routes.

sorry, page looking not found.  1/1notfoundhttpexception in routecollection.php line 161: 

how can fix this?

javad71

it appear issue this. when run server laravel installation, system looking @ /path/to/code/public folder. folder in laravel installation have .htaccess file 'magic' laravel translating url visit correct route.

thus, configuration inside of phpmyadmin setup not getting hit when visit /phpmyadmin browser @ root of laravel project.

a couple suggestions here this.

1: change laravel not use port 8000 if can typically run phpmyadmin domain. if started laravel server running artisan command, port can changed running php artisan serve --port 8888 8888 other open port.

2: in php admin configuration, change port number listens on else.

-brian


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -