简体   繁体   中英

500 internal server error in Laravel 4

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

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM