using htaccess to redirect all vistitors to a specific page

Discussion in 'Apache' started by relixx, May 11, 2006.

  1. #1
    basically, im looking for an htaccess script that'll redirect all visitors to a single page - in this case a custom page that states that the site is down for repairs, etc. any help?
     
    relixx, May 11, 2006 IP
  2. HenrikAI

    HenrikAI Peon

    Messages:
    73
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Use

    RewriteEngine on
    RewriteRule (.*) /page.html
    Code (markup):
    or (if all other pages are removed)

    ErrorDocument 404 /page.html
    Code (markup):
     
    HenrikAI, May 11, 2006 IP