Laravel 4: Input::get() is not working

后端 未结 3 949
故里飘歌
故里飘歌 2021-01-23 09:42

Something weird is happening in my production server using CentOS 7 and the problem is... in my local environment I have many applications developed with Laravel 4 and were inst

3条回答
  •  感动是毒
    2021-01-23 10:03

    I believe the issue lies on your .htaccess file on the server. The RewriteRule is not properly done. Find the similar line and fix as follows.

    RewriteRule ^(.*)$ /index.php?/$1 [QSA]
    

    [QSA] is the changed section

提交回复
热议问题