Virtual host config for ZendFramework


/ Published in: Apache
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <VirtualHost 127.0.0.1:8080>
  2. ServerName vasko
  3. DocumentRoot "f:/wamp/www/MyApp/public"
  4. RewriteEngine on
  5.  
  6. <Directory "f:/wamp/www/MyApp/public">
  7. AllowOverride All
  8. Order allow,deny
  9. Allow from all
  10. </Directory>
  11.  
  12. </VirtualHost>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.