i have a webapp which provides authentication and authorization for all public users. within this app i embedded one more webapp as iframe. But, people whoever knows iframe url can access the same without logging-in into main webapp.
For this, i tried following "rewrite rules" in apache to solve this problem as like given below.
1.Redirect using html form submit
RewriteEngine On
RewriteCond %{REQUEST_METHOD} !=POST
RewriteRule /scheduler/ - [F]
ProxyPass /scheduler/ http://172.16.1.82:5555/
ProxyPassReverse /scheduler/ http://172.16.1.82:5555/
This not worked.. bcoz of embedded webapp not rendering due to "post" request pass
2.Redirect using html anchor link
<Location "/scheduler">
Order deny, allow
Allow all
AuthUserFile /etc/users
AuthName "This is a protected area"
AuthType Basic
Require valid-user
ProxyPass http://172.16.1.82:5555/
ProxyPassReverse http://172.16.1.82:5555/
</Location>
This not worked for me..bcoz iframe url shows user credentails.. and confirm dialogue box coming every time before iframe loads
So, can someone plz tel me how to provide authentication for a http url in order to restrict public access..? or how to abstract/hidden iframe url and details?