Hello, everybody!
I just solved an issue that was giving me headaches and I think maybe others would benefit from my experience, so here I am posting this info:
Under "Uniform Server" (a very nice WAMP stack, IMHO...) I wasn't able to host a Grav instance: all I was getting was a 403 error: "Forbidden: You don't have permission to access / on this server."
After some debugging I came to the conclusion that the issue was in the distributed .htaccess: there is no "Options +FollowSymlinks" directive in it, but apparently that is needed, at least with my configuration where I have Uniform Server handling several virtual hosts.
Not willing to alter Grav's original .htacces I added that directive in Uniform Server httpd-vhosts.conf, in my grav vhost section, which now reads:
<VirtualHost *:${AP_PORT}>
ServerAdmin root@localhost
DocumentRoot ${US_ROOTF}/vhosts/grav
ServerName grav.dev
ErrorLog logs/grav-error.log
CustomLog logs/grav-access.log common
<Directory "${US_ROOTF}\vhosts\grav">
Options Indexes Includes
Options +FollowSymlinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Hope this can help...
Cheers,
Sergio