I have two application one is working in php another is working in jetty server . i want configure in to Apache so i have write code in httpd conf file so i have write this code but it is not working properly
<VirtualHost *:80>
ServerAdmin example.com
DocumentRoot /var/www/html/example.com
ServerName example.com
ErrorLog logs/dev.mapmyindia.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
ProxyRequests off
ProxyPreserveHost on
ProxyPass /directionapp/ http://localhost:8989/index.html/
ProxyPassReverse /directionapp/ http://localhost:8989/index.html/
<Directory /var/www/html/example.com>
Options FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
<Directory /var/www/html/example.com/rim/>
Options FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
# Allow from 122.160.188.70 122.180.97.58
Allow from all
#Allow from 122.160.188.70
</Directory>
</VirtualHost>