Hi,
Extract from V4.0 Handbook:
By default, WebSphere serves all the artifacts of an application, should they be
static or dynamic. If your application uses a lot of static content, you may want to
configure WebSphere so that the static content is served by the Web server
instead. This comes at the expense of packaging the static contents of the
application separately, and deploying them manually (there is no standard
process to do this).
To do this, you must disable the File Serving Servlet. This can be done from the
AAT, from the IBM Extensions tab of the Web Module Properties window, by
un-checking the File serving enabled option.
You must then reinstall the application, and regenerate the plug-in configuration.
To check that this has worked, you can look at the plugin-cfg.xml file, where you
should see something similar to this, as opposed to a single rule that redirects all
/webbank/* requests to WebSphere:
<UriGroup Name="webbankApplication/webbankWeb_URIs">
<Uri Name="/webbank/TransferServlet"/>
<Uri Name="/webbank/*.jsp"/>
<Uri Name="/webbank/*.jsv"/>
<Uri Name="/webbank/*.jsw"/>
<Uri Name="/webbank/j_security_check"/>
</UriGroup>
You should also configure the Web Server to recognize the /webbank URI. This
can easily be done in Apache/IHS using an Alias directive, like this:
Hope this helps.
Eddie