Zend Framework vhost settings
Zend Framework vhost settings for xampp server or lampp server
Add the below code in httpd-vhosts.conf in \xampp\apache\conf\extra and modify the paths
<VirtualHost *:8081> php_value include_path ".;C:\xampp\htdocs\public;C:\xampp\htdocs\PhpProject2\library" DocumentRoot "C:\xampp\htdocs\PhpProject2\public" <Directory "C:\xampp\htdocs\PhpProject2"> AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost>
and then add Listen 8081 in httpd.conf file located at xampp\apache\conf
and restart your xampp server ..
Yep.... I couldn't have said it better myself......