Hi cifconav,
I took a peek in the server error logs to find what may be wrong with your .htaccess file, and it appears your .htaccess file is throwing the following error:
This suggests that there may be a redirect loop caused by your current setup. However, the tutorial you are following appears to suggest using a different .htaccess file to the official Laravel documentation. The Laravel documentation suggests placing a .htaccess file with the following contents in the same directory as your public files:
Code:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
Could you try using this code instead and let me know how it goes?
Thank you,