1. Let your Apache server run on port 80, and WingFTP's web client runs on port 8080.
2. Enable the Apache module "proxy_module".
3. Modify the Apache configuration
Code: Select all
<VirtualHost *:80>
ServerName fileserver.YourDomain.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
</VirtualHost>
Done! When you visit the primary domain "www.YourDomain.com", then you will access the Apache's website. When you visit the second domain "fileserver.YourDomain.com", then you will access the web client of WingFTP.