我计划使用我在此处找到的技术(http://css-tricks.com/snippets/htaccess/temporary-maintenance-using-mod_rewrite/)建立一个临时维护页面约 6 小时。代码如下所示:
# Don't forget to turn on the rewrite engine
RewriteEngine on
# Maintenance Redirection
# Replace 555\.555\.555\.555 with your own IP address
# Uncomment first conditional to turn off the redirection
# RewriteCond %{REQUEST_URI} ^$a
RewriteCond %{REQUEST_URI} !maintenance.html
RewriteCond %{REQUEST_FILENAME} !(styles|images).+$
RewriteCond %{REMOTE_ADDR} !^555\.555\.555\.555$
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1$
RewriteRule (.*) /maintenance.html [R,L]
使用这种方法时有什么我应该注意的吗?如果我这样做,我会招致任何长期的 SEO/Google 搜索排名问题吗?请指教。