Forum Discussion
JCMATTOS_41723
Nimbostratus
Jan 09, 2008ProxyPass iRule?
We have dual LTM's 9.4.1. We are trying to rewrite the url so that users will see http://xyzcompany/ in the url instead of http://123company/. We tried using the ProxyPass iRule sample:
http...
Kirk_Bauer_1018
Altostratus
Jan 12, 2008To fix the trailing-slash bug, please find this code in the iRule code:
if {$orig_uri eq $path_clientside} {
if {[substr $clientside [string length $clientside] 1] ne "/"} {
set is_https 0
if {[PROFILE::exists clientssl] == 1} {
set is_https 1
}
and replace it with this:
if {$orig_uri eq $path_clientside} {
if {[string index $path_clientside end] ne "/"} {
set is_https 0
if {[PROFILE::exists clientssl] == 1} {
set is_https 1
}
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