我今天正在对我的网站进行重大更改,并希望为除了我以外的所有人显示维护页面。但是,它仍然会将我重定向到维护页面,即使我将我的IP地址列入白名单(我通过执行ipconfig进行三重检查)。我猜我的代码有问题。这是我的.htaccess文件,万一有人可以提供帮助!
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.playbank\.com$ [NC]
RewriteRule ^(.*)$ http://www.playbank.com/$1 [L,R=301]
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_ADDR} !^192\.168\.1\.*
RewriteCond %{REQUEST_URI} !^/maintenance\.html$
RewriteCond %{REQUEST_URI} !\.(jpe?g?|png|gif) [NC]
答案 0 :(得分:3)
192.168.1.*
是您的LAN网络,它是互联网其他部分不可见的专用网络。您需要指定ISP提供的外部 IP地址。输入www.whatismyip.com并使用该帐户。