.htaccess环境无法正常工作

时间:2014-04-12 13:32:35

标签: .htaccess

我最近开始使用.htaccess,我无法获得环境(我认为他们是如何调用的)。我基本上有这个:

RewriteEngine on
RewriteCond %{TIME_HOUR}%{TIME_MIN} >0600       
RewriteCond %{TIME_HOUR}%{TIME_MIN} <1800       
RewriteRule ^page\.html$ default.html [L]      
RewriteRule ^page\.html$ defaultNight.html [L]

我不确定问题是什么。这是我的.htaccess文件中唯一的代码。我是否必须创建default.html和defaultNight.html的单独目录?我不知道。

1 个答案:

答案 0 :(得分:0)

您的重写条件看起来并不正确。你可以有这样的规则:

RewriteEngine on

# serve default.html between 8AM to 6PM
RewriteCond %{TIME_HOUR} >07   
RewriteCond %{TIME_HOUR} <19       
RewriteRule ^page\.html$ default.html [L]      

RewriteRule ^page\.html$ defaultNight.html [L]