laravel でauth などを入れた時に、route が効かなく動かないことがままある。

その時は、apache の .htaccess が効いてないことが多い。

修正方法は、ubuntu の場合は /etc/apache2/apache2.conf centos の場合は、/etc/httpd/httpd.conf を編集

<Directory /var/www/html>

        Options Indexes FollowSymLinks

        AllowOverride All

        Require all granted

</Directory>

Allow Override All

と none を All にする。