There are several articles out on the net which cover nicer URLs for Oracle APEX applications.
This posting is just an overview of some of them, because I just came across a new blog posting for that topic and it’s an often asked question when you are going to deploy your new APEX application.
There are two methods I know of to get nicer URLs.
- Use the Apache mod_rewrite module. The following links are a few articles covering that
- Use HTML Frames. The following code would be an example for that
<html> <head> <title>Some Title</title> </head> <frameset rows="100%,*" border="0"> <frame src="http://your_host/pls/otn/f?p=xxxxx" frameborder="0" /> <frame frameborder="0" noresize /> </frameset> </html>




June 17th, 2009 at 09:18
Hello,
But how can I configure that with SSO enabled?
Because I got it working without it but with it it doesn’t redirect back after authentication on the SSO
Thanks
Erwin