Robert Landrum wrote: > > I'm trying to do something really simple and trying to avoid writing > an Modperl handler to do it. > > We have a website behind a bigip running on port 8080. When someone > requests a URL that doesn't end with a slash, it's redirected to > http://host:8080/path/ . I tried turning off UseCononicalName, but > it didn't have any effect. > > Any suggestions?
I have a setup like this: <VirtualHost my.transparent.server:10001> ServerName foo.example.com Port 80 ... <VirtualHost my.transparent.server:20001> ServerName foo.example.com Port 443 behind bigIP... so, traffic to foo.example.com on 443 at the bigIP level is sent to my.transparent.server at 20001. mod_dir and others use the Port directive to "fix" redirects, which isn't exactly self-evident... --Geoff