Laravel 4 simple route not working using mod_rewrite, and .htaccess

前端 未结 4 686
北恋
北恋 2020-12-08 15:57

I\'m not only new to Laravel 4, but new to using frameworks. I thought I\'d start with Laravel since it\'s gotten such good reviews. I\'ve got a good install of Laravel. I g

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-08 16:26

    in httpd.conf change

    
        AllowOverride none
        Require all granted
    
    

    to

    
        AllowOverride all
        Require all granted
    
    

    then uncomment

    #LoadModule rewrite_module modules/mod_rewrite.so
    

    to

    LoadModule rewrite_module modules/mod_rewrite.so
    

提交回复
热议问题