Redirect to a "site maintenance" page

  • Thread starter Thread starter Mike Gleason jr Couturier
  • Start date Start date
M

Mike Gleason jr Couturier

Hi,

What's a clean way to redirect users on an information page while doing site
maintenance...

Can we do it with urlMappings !? (wildcard "*"?)

Thanks
 
Provided it is site maintenance and not server maintenance, point the site,
in IIS, to a different directory.
For server maintenance, it is a bit more involved, as you have to resolve to
a different server during maintenance.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************************************************
| Think outside the box!
|
*************************************************
 
re:
!> Provided it is site maintenance and not server maintenance,
!> point the site, in IIS, to a different directory.

Actually, all that's needed is to create an "app_offline.htm" file
in the root directory of the application which is being updated.

See :
http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx

re:
!> For server maintenance, it is a bit more involved, as you
!> have to resolve to a different server during maintenance.

Yes. That's a different problem.




Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
Cowboy (Gregory A. Beamer) said:
Provided it is site maintenance and not server maintenance, point the site, in IIS, to a different directory.
 
Mike Gleason jr Couturier said:
Hi,

What's a clean way to redirect users on an information page while doing
site maintenance...

Can we do it with urlMappings !? (wildcard "*"?)

Thanks

"app_offline.htm"

Cool thanks guys!!
 
Back
Top