I am configuring Apache to connect the weblogic application server with apache, which already works but it needs that the urls coming from the weblogic bakend that are:
be
The reason is that Angular's fronend clients have the Api Rest routes configured to work with the name of the project, in this case, strataVal, and then / services /.
My apache configuration is:
<Location /weblogic/strataVal>
Options FollowSymLinks
RewriteEngine On
RewriteRule ^strataVal/services/apiRest$ /weblogic/strataVal/services/apiRest [L]
</Location>
But when I access the url link , it still works and not what should work link .