0

We are working on a development site and want to show a holding page to all visitors whilst we make the final changes.

Can I use htaccess to show one index page to the outside world and the main index to our internal team?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Brob
  • 665
  • 2
  • 13
  • 23

1 Answers1

1
RewriteEngine On
RewriteCond %{REMOTE_ADDR} !^1\.2\.3\.4$
RewriteRule ^ maintenance.html [L]

This says if the remote address is not 1.2.3.4, answer any request with maintenance.html.

deceze
  • 510,633
  • 85
  • 743
  • 889