I am trying to use owa_util for http redirection, but it returns http status as 302, even when i am setting the http status as 301.
I found that the same issue was raised in following discussion and bug, but its not yet resolved.
any way to create PERMANENT (301) url redirects in pl/sql?
https://support.oracle.com/rs?type=bug&id=6512796
I am using following kind of code -
begin
owa_util.status_line(301,'',false);
owa_util.REDIRECT_URL('http://www.google.com', true);
end;
Any help will be appreciated.