Inside Oracle APEX by Patrick Wolf

Nicer URL for an Oracle APEX application

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>

Labels: , , ,

0 Comments:

Post a Comment

<< Home