如何重定向整个网站和所有流量,但我的IP地址?

时间:2016-11-10 00:01:41

标签: php html .htaccess redirect

我一直在研究如何将所有流量重定向到某个页面,但是我的IP地址但是我找不到一个我正在寻找...我想要做的是重定向整个网站不只是一个页面到一个特定的页面,但不重定向我的IP地址。我试过这个:

RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_HOST} !^123\.456\.789\.
RewriteCond %{REQUEST_URI} !/page\.html$  
RewriteRule .* http://www.example.com/maintenance.html [R=302,L]

但它只会重定向一个页面..而且我有太多页面要继续添加另一个页面RewriteCond

1 个答案:

答案 0 :(得分:1)

这应该有效。

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !=123.456.789
RewriteRule .* http://www.example.com/maintenance.html [R=302,L]