Reputation: 27
After I deployed my laravel project on the domain and only the homepage is working. And the rest when i click, they gave this error:
Can someone afford my question please? Thanks in Advance
Upvotes: 0
Views: 64
Reputation: 3113
First check / set up your routes file.
Look at the file routes/web.php
in your application directory and you will see the list of URLs your app will respond to.
If something isn't in that list your app will give a 404.
Also do php artisan route:list
to see the same information in another form. That is the definitive list of routes the app will respond to.
Upvotes: 0