Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Last active August 29, 2015 14:22
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 barbwiredmedia/09d816a16522a8f13ff0 to your computer and use it in GitHub Desktop.
Save barbwiredmedia/09d816a16522a8f13ff0 to your computer and use it in GitHub Desktop.
For local development Xampp virtual host vhosts , apache
127.0.0.1 yoururl.dev
<VirtualHost *>
DocumentRoot "J:\xampp\htdocs\dev.yoururl.com"
ServerName yoururl.dev
<Directory "J:\xampp\htdocs\dev.yoururl.com">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment