Forms 11g - How to use RewriteRule to force a specified CONFIG based on domain name & URL.
Hello,
I'm going to deploy the same Forms application for a couple of different customers on one OFM 11g server.
I use VirtualHost to isolate each customer based on its domain name and It works.
<VirtualHost *:80>
ServerName customer1.mydomain.com
<Location "/forms">
SetHandler weblogic-handler
WebLogicHost myserver
WebLogicPort 9001
</Location>
</VirtualHost>
Now, I would like to make the forms application URL more friendly for the customer ...
For ex the customer hits this http://customer1.mydomain.com/myformsapp and access without redirection this application http://customer1.mydomain.com/forms/frmservlet?config=CUSTOMER1
... and also prevent them from calling the application of other customers by specifying a config in the URL.