Forum Discussion
yihwen_100254 Nimbostratus
Nimbostratus
Jun 14, 2011Generic iRule to redirect domain.com to www.domain.com
Hi      
    I am planning to create an generic iRule to perform a http://domain.com to https://www.domain.com I know in the F5 v10.x.x, there is a _sys_https_redirect and that will actually redirect ...
hoolio Cirrostratus
Cirrostratus
Jun 14, 2011What happens when you try the iRule?  Does the client get a redirect?  Can you add logging to the iRule and check /var/log/ltm for the output? 
when HTTP_REQUEST {
   log local0. "[IP::client_addr]:[TCP::client_port]: [HTTP::method] request to [HTTP::host][HTTP::uri]"
    Check if host doesn't start with www and has at least one alpha character
   if { not ([string tolower [HTTP::host]] starts_with "www") and [string match {[a-zA-Z]} [HTTP::host]] }{
       Redirect to the same host via https with www. prepended
      HTTP::redirect "https://www.[HTTP::host][HTTP::uri]"
      log local0. "[IP::client_addr]:[TCP::client_port]: Redirecting to https://www.[HTTP::host][HTTP::uri]"
   }
}
Aaron
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