Advertisement
wingman007

vhost with domains

Aug 8th, 2013
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.31 KB | None | 0 0
  1. <VirtualHost *:80>
  2.     ServerName tst.localhost
  3.     DocumentRoot "C:\projects\fmi\public"
  4.     SetEnv APPLICATION_ENV "development"
  5.     <Directory "C:\projects\fmi\public">
  6.         DirectoryIndex index.php
  7.         AllowOverride All
  8.         Order allow,deny
  9.         Allow from all
  10.     </Directory>
  11. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement