now vhosts.conf
has the following configuration
<VirtualHost *:80>
ServerName mall.xxx.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
Header set Access-Control-Allow-Origin *
Header set Access-Control-Allow-Headers accept,authorization,content-type
</Proxy>
ProxyPass / http://127.0.0.1:8888/
ProxyPassReverse / http://127.0.0.1:8888/
</VirtualHost>
now I want to implement
access mall.xxx.com
proxy to http://127.0.0.1:8888/
access mall.xxx.com/seller
proxy to http://127.0.0.1:8889/
, is there a way to implement