No executing instructions getting error
Opened this issue · 3 comments
prashantkumar552 commented
Hi,
i am trying to execute the app but it gives me error saying
NotFoundHttpException: No route found for "GET /"
ResourceNotFoundException:
also no document is avaliable how to set up this and execute successfully.
Kindly provide instructions
sergiopivaral commented
Hi,
I had same issue, please help with /oauth and /load script, how to use or if we need something else to run.
hectorbenitez commented
If you are running apache add a .htaccess file with this content:
Options -MultiViewsRewriteEngine On
RewriteCond %{HTTP_HOST} !^dev\.enarm\.com [NC]
RewriteCond %{HTTP_HOST} ^www\.enarmt\.com [NC]
RewriteRule ^(.*)$ http://enarmt.com/$1 [L,R=301]
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]