Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to setup splash page

6 views
Skip to first unread message

myle...@gmail.com

unread,
Oct 20, 2009, 3:50:07 PM10/20/09
to
Hello

Can some one Please tell me how to setup a splash page in IHS.

I have a website http://10.1.1.10:80/snoop

when ever I am doing maintenance on snoop application,
I want splash page to appear instead of application when users hit the link http://10.1.1.10:80/snoop

How do I implement this?
I have a IHS webserver and websphere application server.
I appreciate your help and valuble suggestions.


Thanks
Lehari.

Sunit Patke

unread,
Oct 20, 2009, 7:58:31 PM10/20/09
to
ErrorDocument 500 /myerrorpage.html

- Sunit

<myle...@gmail.com> wrote in message
news:792786684.1256068237...@ltsgwas009.sby.ibm.com...

marcoensing

unread,
Nov 4, 2009, 5:23:37 AM11/4/09
to
Hi Lehari,

You can set this option in the httpd.conf

ErrorDocument 500 http://10.1.1.10/down/

And create a index.html in the down directory which shows a down for maintenance screen.
But this will only work if your WebSphere App server is really down. This directive
is just a replacement for your "normal" 500 internal server error.

You also could configure a rewrite rule when your WebSphere App server is down for maintenance.

RewriteEngine on
RewriteRule ^/snoop$ /down [R,L]

Then all the traffic going to /snoop will be redirected to down directory on your IHS server.

Regards,

Marco

Eric Covener

unread,
Nov 4, 2009, 8:23:00 AM11/4/09
to
marcoensing wrote:
> Hi Lehari,
>
> You can set this option in the httpd.conf
>
> ErrorDocument 500 http://10.1.1.10/down/
>
> And create a index.html in the down directory which shows a down for maintenance screen.
> But this will only work if your WebSphere App server is really down. This directive
> is just a replacement for your "normal" 500 internal server error.
>
Are you sure that does anything when the AppServer returns a 500?

--
Eric Covener

myle...@gmail.com

unread,
Nov 4, 2009, 12:52:53 PM11/4/09
to
Thank You so much Marco
This is exactly what I want and it worked.
0 new messages