Forum Discussion
Ahsan_2380
Nimbostratus
Feb 03, 2009URL Redirection in Business Objects
Hi
We have a Business Object XI Server.
The URL for accessing the BO page is
http://:8080/businessobjects/enterprise115.
We dont want the users to type in t...
hoolio
Cirrostratus
Feb 03, 2009Hi Ahsan,
If you want to redirect requests to the root object to "/businessobjects/enterprise115", you can use an iRule like this:
when HTTP_REQUEST {
Check if path is /
if {[HTTP::path] eq "/"}{
Redirect to the same hostname and new URI
HTTP::redirect "http://[HTTP::host]/businessobjects/enterprise115"
}
}
If you want the change to be transparent to the client (ie, not update the address bar), you can rewrite the URI and not redirect the client:
when HTTP_REQUEST {
Check if path is /
if {[HTTP::path] eq "/"}{
Rewrite the path
HTTP::path "/businessobjects/enterprise115"
}
}
Aaron
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects
