Hello there,
I just created a new laravel project with jetstream and apache2.
I'm able to open the main page (public/index.php) but thats it.
Every other route shows a 404.
I made sure the routes do show up using php artisan route:list.
Apache2 conf:
<VirtualHost *:80>
ServerName ccs
ServerAlias www.ccs
ServerAdmin webmaster@localhost
DocumentRoot /var/www/ccs/public
<Directory /var/www/ccs>
Options Indexes MultiViews
AllowOverride None
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Maybe I'm missing something obvious - any help appreciated.