Hai,
Am having OAS 10.1.2 installed .. forms deployed and accessible over the url:
http://hostname.domainname/forms/frmservlet?config=TEST
I have a requirement to access the application over the URL
http://hostname.domainname
and the complete forms application need to be accessed over it. (with out URL redirecting to the original URL http://hostname.domainname/forms/frmservlet?config=TEST).
So, I set the below in httpd.conf
RewriteEngine on
RewriteRule ^/$ /forms/frmservlet?config=TEST[PT]
and the URL
http://hostname.domainname is opening but redirecting to the original URL http://hostname.domainname/forms/frmservlet?config=TEST
Any idea how I can prevent this and the users need to see only the URL http://hostname.domainname
Thanks in advance