I have an enterprise application that is written in Java using JSF (using Riches 3.3). Currently my URL looks like this:
The question is how do I mask my URL to make it:
thanks
You can use the URL to write the URL, however, in this case it seems that you want to remove the reference path of your web application, in this case your There are two options to:
- Apply your application to the reference path
/
(how aperture is server-specific) - Apache on port 80 Use mod_proxy to run and run some other URL proxy for proxy running on different ports, like using some configuration.
Apache config:
& lt; Proxy http: // localhost: 8080 / * & gt; Allow order, deny permission from everyone & lt; / Proxy & gt; ProxyPass on ProxyPreserveHost / http: // localhost: 8080 / WebApplication / ProxyPassReverse / http: // localhost: 8080 / WebApplication /
Comments
Post a Comment