Forum Discussion

Karthik_Krishn1's avatar
Karthik_Krishn1
Icon for Cirrostratus rankCirrostratus
Feb 19, 2013

Landing page for SAP E-recruitment

Hello ,

 

Is it possible to host a landing page on the F5 . When a user types in a particular URL , they are redirected to the landing page on the F5 .

 

 

thanks,

 

 

karthik

 

 

 

 

3 Replies

  • Can you be more explicit on what you mean by landing page. Would this be a simple page with a few graphics perhaps? Or something more feature rich?
  • Hello,

     

    This would be a simple page with some buttons linking to other pages . This page would have our company logo . I could send you the sample page if you want to view it . Also , how would I deploy such a page . So anytime the user hits the page... http or https ie http://examplesite.company.com ( VIP hosted on F5) this page should be displayed.

     

     

    Thanks,

     

    Karthik

     

     

     

  • OK, so assuming you are on v11 and have iFiles support, you would use something like this. If you don't think this example is enough for you to work on please email me at: ****** with the sample page and I'll post something more complete;

     iFiles must be uploaded in advance. Note there is no requirement to specify the file extension and thus two files cannot have the same name index is a html file, some-image is an image file, requested and sent file names do not need to match when HTTP_REQUEST { if {[active_members [LB::server pool]] < 1} { switch [HTTP::uri] { "/" { HTTP::respond 200 content [ifile get "index"] } "/some-image.jpg" { HTTP::respond 200 content [ifile get "some-image"] } } } }