Reputation: 675
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?
Upvotes: 0
Views: 60
Reputation: 522165
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
.
Upvotes: 1