httpd-vhosts.conf を変更して
プロジェクト毎に別のフォルダーを DocumentRoot にしようとすると
DocumentRoot “C:/xampp/htdocs” 以下の時は問題なかったのに
DocumentRoot “C:/projects/hogehoge\htdocs” のようにすると
Access forbidden! となる。
対処方法は Directory でフォルダーに権限を設定
DocumentRoot "C:/projects/hogehoge\htdocs" <Directory "C:/projects/hogehoge\htdocs"> Require all granted </Directory>