mod_rewrite with proxy weblogic plugin

0

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:

link

be

link

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 .

    
asked by Theasker 26.02.2018 в 14:04
source

0 answers