I'm on a shared virtual host and there I had a homepage with angularjs <> php. The htaccess file looked like this:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^ index.html [L]
This worked great for refreshing or directing from nearly every URL to index.html. But now I switched to angularjs <> nodejs. It's coupled like this:
angularjs <> nodejs <> service <> apache
So I needed a new htaccess file with a proxy it now looks like this:
RewriteEngine On
RewriteRule ^(.*) http://localhost:64913/$1 [P]
I tried to get back my old refreshing / redirecting back. But no matter what I tried it ended up giving me Errors like:
Error: ENOENT, stat'{some long link}'
Does someone know what to do?