Unix script to segregate dynamic and static content of a web application

I need to deploy a JAVA application on two separate servers:

  1.   Web server \(IBM HTTP Web Servers \(IHS\)\)
    
  2.   Application Server \(WebSphere Application Server WAS7.0\)
    

The static content will have to be deployed and handled on Web server. These would include GIFs, HTML, CSS, etc files. The dynamic content would be deployed and handled by the WebSphere Application Server. These servers will be installed on two independent machines.

Presently the application is completely deployed and hosted from a single server (i.e. WebSphere Application Server). Now I need to segregate the static and dynamic content and put them on different servers. I was planning to make a unix script for the same, but don't have much knowledge on this as i am new to UNIX.

Please share your knowledge on the same.

Thanks.