I have main url like http://apps1.example.com and i want create alias like http://apps1.example.com/svc-base
in my vhost config
<VirtualHost *:80>
ServerName apps1.example.com
ProxyPreserveHost On
ProxyPass / http://123.456.7.8:880/
ProxyPassReverse / http://123.456.7.8:880/
Alias /svc-base !
ProxyPass /svc-base http://123.456.7.9:881/
ProxyRequests Off
AllowEncodedSlashes NoDecode
</VirtualHost>
When access from browser the url http://apps1.example.com/svc-base just redirect to main page of http://apps1.example.com/ what's wrong with my code? need advice thanks before :)