Windows Apache 2.4 VirtualHost Definition

Posted Over 10 years ago. Visible to the public.

Put this in your httpd.conf:

<VirtualHost *:80>
    DocumentRoot "C:/your/docroot"
    ServerName yourname.local
    DirectoryIndex index.php
</VirtualHost>
<Directory "C:/your/docroot">
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>

Mike Whitby
Last edit
About 10 years ago
Posted by Mike Whitby to Magento (2013-12-09 11:32)