.htaccess - Laravel 5 internal server error after moving to the server -


my laravel 5 project works on localhost. after moving project server shows internal server error.

error message

the server encountered internal error or misconfiguration , unable complete request. 

i checked requirements. requirements correct.

php = 5.5 mcrypt php extension = enabled openssl php extension = enabled mbstring php extension = enabled tokenizer php extension = enabled 

both .htaccess files on root , public folder same,

<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> 

i tested removing both .htaccess files still shows internal server error.

how can fix issue ? suggestions ?

check if mod_negotiation enabled. had same issue now


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -