Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Create a folder on your computer for the files
  2. Edit your host file to add the site name
  3. Edit httpd-vhosts to add the VirtualHost
  4. Restart Apache using the XAMPP Control Panel
  5.  
  6.  
  7. 127.0.0.1 //Mywebsite.dev
  8.  
  9. <VirtualHost *:80>
  10. DocumentRoot C:Mywebsitetrunkwwwpublic
  11. ServerName //Mywebsite.dev
  12. <Directory C:Mywebsitetrunkwwwpublic>
  13. Order allow,deny
  14. Allow from all
  15. </Directory>
  16. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement