I have a web-site in the directory d:\www\mysite on my local computer.
Then url http://localhost/mysite/index.php correctly retrieves my file which is located in d:\www\mysite\index.php
My issue is with the URL rewriting in my .htaccess file:
RewriteEngine On
RewriteRule . /front-controller.php [L]
I get this response:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at admin@dominio.org to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
This is my apache conf
Alias /debian /mnt/www
<Directory /mnt/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>