Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # Virtual Hosts
  2. #
  3.  
  4. <VirtualHost *:80>
  5. ServerName localhost
  6. DocumentRoot C:/ProgramData/wamp64/www
  7. <Directory "C:/ProgramData/wamp64/www/">
  8. Options +Indexes +Includes +FollowSymLinks +MultiViews
  9. AllowOverride all
  10. Order Deny,Allow
  11. Deny from all
  12. Allow from localhost 127.0.0.1 ::1
  13. </Directory>
  14. </VirtualHost>
  15. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement