I have an Oracle supplied Apache server in front of an Oracle Application Express application server. I want to use mod_rewrite to catch certain Apex apps and send them somewhere else. The incoming URL looks something like this...
The "p=123" is which application in Oracle Apex to run. The problem is, from the logs it seems like the URL/URI is getting chopped off at the question mark, so I have nothing to match the rewrite rule on. That is, this is what I have to match on...
I've been looking for flags or options to just give me the whole URI to match on, but I can't seem to find it.
Any ideas?
Code:
[URL unfurl="true"]http://oldserver/pls/apex/f?p=123[/URL]
Code:
/pls/apex/f
Any ideas?