I am struggling to understand how can someone load index.html file with Laravel. It seems to work only with index.php which is not something I want.
Here is a problem:
I have two folders client and server. My server folder contains the entire Laravel app. My client directory contains AngularJS app. (I can't use public directory)
I want Laravel to serve index.html along with all static files from the client directory.
Changing 'public' => __DIR__.'/../public' did somewhat work, but then it breaks all my routes, i.e. no matter what I type for URL index.html gets loaded with broken static assets. For example /api/users does not return a JSON object anymore but the same index.html.
python -m SimpleHTTPServerfor example and Laravel server on another port.