I have a Laravel 5.1 app started that works fine on local dev hosting. I installed Laravel 5.1 on AWS Ubuntu LAMP. I have uploaded my Resources folder, my controllers and routes, and the .htacess file from the public folder. When I hit the site in a browser, I get a view that just has "Laravel 5" in the middle of the screen. I cannot find a view in the files that has that file. Also, I get a 404 when I try to hit any of my routes.
Let me know of any files you need to see. But, I am hoping this issue is something higher level that I missed.
Thanks in advance for any help....
Adding the requested .conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/SalesBrainCRM/public
<Directory "/var/www/SalesBrainCRM/public">
allow from all
Options +Indexes
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combine
</VirtualHost>
Root View Issue Resolved My JavaScript was not getting pulled in correctly. I suppose Laravel has a default view that was pulled in somehow???
I still have the rewrite issue. I have tried everything suggested and others I have found. I still have to include index.php in URLS for routes to function.