Skip to content

Instantly share code, notes, and snippets.

@curtisbelt
Created November 13, 2016 00:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curtisbelt/e81fbbb7f0d603bb58d8b9cae8a1829c to your computer and use it in GitHub Desktop.
Save curtisbelt/e81fbbb7f0d603bb58d8b9cae8a1829c to your computer and use it in GitHub Desktop.
httpd-vhosts.conf for Re-usable Wordpress Installation
<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