環境
・Apache
・Ubuntu22.04
・Laravel10
LaravelでTOPページ以外表示されなくて3日くらい悩んでいたのですが、原因はmod_rewrite.so モジュールが有効になっていないことでした。
まずmod_rewriteの存在を確認する
cat /etc/apache2/mods-available/rewrite.load
こういうのが出たらオッケー
$ cat /etc/apache2/mods-available/rewrite.load
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so$
以下のコマンドで有効にする
sudo a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
systemctl restart apache2
最後にApacheを再起動
sudo systemctl restart apache2
これで表示されるはず。