I need to open access to the following folder for everyone:
C:\xampp\htdocs\myapp\app\Resources\export
but I get 403 Forbidden error. I tried many variants but still no luck. My .htaccess which is located at
C:\xampp\htdocs
is as follows:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
# Explicitly disable rewriting for front controllers
RewriteRule ^app_dev.php - [L]
RewriteRule ^app.php - [L]
# Fix the bundles folder
RewriteRule ^bundles/(.*)$ /myapp/web/bundles/$1 [QSA,L]
RewriteRule ^js/(.*)$ /myapp/web/js/$1 [QSA,L]
RewriteRule ^css/(.*)$ /myapp/web/css/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /myapp/web/app.php [QSA,L]
RewriteRule (.*) $1 [E=SYMFONY_ENV:prod]
Any ideas would be welcome. Thank you.