Redirect to a subfolder in Apache virtual host file Redirect to a subfolder in Apache virtual host file apache apache

Redirect to a subfolder in Apache virtual host file


You should add to your configuration:

Alias /subfolder /var/www/subfolder<Directory /var/www/subfolder>    Order allow,deny    allow from all</Directory>

and fit the configuration between "Directory" to your needs.

See the Apache documentation to have more informations.