Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <VirtualHost *:80>
  2. DocumentRoot "C:/xampp/htdocs/"
  3. ServerName localhost
  4. </VirtualHost>
  5. <VirtualHost *:80>
  6. DocumentRoot "C:/xampp/apps/laravelProject/public"
  7. ServerName laravelProject.dev
  8. <Directory "C:/xampp/apps/laravelProject/public">
  9. Options Indexes FollowSymLinks MultiViews
  10. AllowOverride all
  11. Order Deny,Allow
  12. Allow from all
  13. Require all granted
  14. </Directory>
  15. </VirtualHost>
  16.  
  17. 127.0.0.1 laravelProject.dev
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement