Hi, I'm trying to access virtuoso server through an apache server, using mod_proxy. Calling http://www.mysite.net/virtuoso, it should redirect on my local server on 88.191.91.72:8890
NameVirtualHost 88.191.91.72 <VirtualHost 88.191.91.72> ServerName www.mysite.net ... ProxyRequests off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass /virtuoso/ http://172.16.12.128:8890/ ProxyPass /virtuoso http://172.16.12.128:8890 ProxyPassReverse /virtuoso/ http://172.16.12.128:8890/ ProxyPassReverse /virtuoso http://172.16.12.128:8890 ProxyTimeout 300 ProxyHTMLURLMap /virtuoso/ http://172.16.12.128:8890/ ProxyHTMLURLMap /virtuoso http://172.16.12.128:8890 ProxyPreserveHost On </VirtualHost> But doing so, when trying to enter login and password for virtuoso login, from http://www.mysite.net/virtuoso/conductor (with expected screen). I have an error with a returned address http://www.plm-interop.net/conductor/main_tabs.vspx, and a message "Not found". I think it does not work, because some call are may be not done under the path /virtuoso , in particular with the login, but I'm not so sure. Did some one already address successfully this need (redirection on a server) and can indicate me how to proceed? Thanks in advance. Nicolas