Reputation: 2965
I am trying to migrate my laravel web app to hosting server, uploaded contents and changed the database configuration.
Then I pointed to my web browser like : www.mywebsite.com it will shows 500 internal server error
Is there any problem in my htaccess file. ?
<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>
or I am working with BITBUCKET GIT.is there any problem with GIT Usage. ?
Thanks & regards
Upvotes: 0
Views: 1612
Reputation: 2965
Posting my own answer. Make sure your folders have 755
permission. I cleared this issue with permission. This is first thing do any others. You can get successful output.
No Issues with .htaccess and GIT.
Upvotes: 2