Is it possible to have a VirtualHost like this:
<VirtualHost _default_:80> Servername example.com DocumentRoot /srv/www Redirect /groupdir /var/www/html/groupdir </VirtualHost> <Directory /srv/www> Require all granted </Directory>
But then have a directory in a different tree served from that VirtualHost?
<Directory /var/www/html/groupdir> Options +indexes Require all granted </Directory>
The current configuration above seems to redirect correctly, but the page displayed says that the directory doesn't exist.
Thanks in advance all!
[link][2 comments]