Created
November 13, 2016 00:19
-
-
Save curtisbelt/e81fbbb7f0d603bb58d8b9cae8a1829c to your computer and use it in GitHub Desktop.
httpd-vhosts.conf for Re-usable Wordpress Installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName dev.host | |
UseCanonicalName off | |
ServerAlias *.host | |
DocumentRoot E:/wamp64/www/wordpress | |
<Directory "E:/wamp64/www/wordpress/"> | |
Options +Indexes +Includes +FollowSymLinks +MultiViews | |
AllowOverride All | |
Require local | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment