Forum Discussion

Sean2010_159752's avatar
Sean2010_159752
Icon for Nimbostratus rankNimbostratus
Jun 04, 2014

301 IRule URL Redirect

Hi, Can someone please help me as i am trying to create a conditional Irule 301 Redirect from our old domain "www.abc.ie/business/home" to www.business.abc.ie/.

 

Where i need the condition is if the server looks for the destination URl and if it does not exist, it will redirect the user to the home page - www.business.abc.ie/ or a specific URL

 

4 Replies

  • Without further details, and if you want to react on any 404 returncode, you could do something like that:

    when HTTP_RESPONSE {
        if {[HTTP::status] eq "404"}{
            HTTP::respond 301 Location "https://my.new.host/my/special/url"
        }
    }
    
    • Sean2010_159752's avatar
      Sean2010_159752
      Icon for Nimbostratus rankNimbostratus
      Thanks Rene, does that mean all pages within the domain will redirect too? Eg www.abc.ie/business/home/ accounting to www.business.abc.ie/accounting. Thanks
  • Without further details, and if you want to react on any 404 returncode, you could do something like that:

    when HTTP_RESPONSE {
        if {[HTTP::status] eq "404"}{
            HTTP::respond 301 Location "https://my.new.host/my/special/url"
        }
    }
    
    • Sean2010_159752's avatar
      Sean2010_159752
      Icon for Nimbostratus rankNimbostratus
      Thanks Rene, does that mean all pages within the domain will redirect too? Eg www.abc.ie/business/home/ accounting to www.business.abc.ie/accounting. Thanks