I am hosting my Laravel 5.0 project for the first time on Oracle Linux Server. Laravel returns a Blank White Screen on home directory and other views as well.
Php version is 5.4 installed on server is 5.4 and other extensions required to run laravel as mentioned in Laravel documentation are enabed.
Directory on server where the project is hosted var/www/html/MyLaravelProject
Here is my htaccess file.
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options +Indexes +FollowSymLinks +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 have made certain changes to get things working but no luck. Please help.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community