Nicer URL for an Oracle APEX application

25. February 2007

Oracle APEX, Deployment

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.

  1. Use the Apache mod_rewrite module. The following links are a few articles covering that
  2. 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>

One Response to “Nicer URL for an Oracle APEX application”

  1. Erwin Says:

    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

Leave a Reply