I am trying to build an app using Laravel framework.
Error The server encountered an internal error or misconfiguration and was unable to complete your request.
I checked httpd.conf to check if mode_rewrite was not commented.I have also tried changing the AllowOverride "None to "All" in httpd.conf file. Can anyone help me please?
The .htaccess file is shown below:
Options -MultiViews
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]