My Routes are Returning a 404, How can I Fix Them?

前端 未结 18 1105
栀梦
栀梦 2020-12-23 10:44

I\'ve just started learning the Laravel framework and I\'m having an issue with routing.

The only route that\'s working is the default home route that\'s attached to

18条回答
  •  感情败类
    2020-12-23 11:25

    The Main problem of route not working is there is mod_rewrite.so module in macos, linux not enabled in httpd.conf file of apache configuration, so can .htaccess to work. i have solved this by uncomment the line :

    # LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    

    Remove the # from above line of httpdf.conf. Then it will works.
    enjoy!

提交回复
热议问题