htaccess Elite

.htaccess tutorial


All times are UTC [ DST ]





Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: Time-Dependent Rewriting
PostPosted: 30 Oct 2006 20:41 
Offline
User avatar

Joined: 25 Sep 2006 04:48
Posts: 242
Description:

When tricks like time-dependent content should happen a lot of webmasters still use CGI scripts which do for instance redirects to specialized pages. How can it be done via mod_rewrite?

Solution:

There are a lot of variables named TIME_xxx for rewrite conditions. In conjunction with the special lexicographic comparison patterns <STRING, >STRING and =STRING we can do time-dependent redirects:

Code:
    RewriteEngine on
    RewriteCond   %{TIME_HOUR}%{TIME_MIN} >0700
    RewriteCond   %{TIME_HOUR}%{TIME_MIN} <1900
    RewriteRule   ^foo\.html$             foo.day.html
    RewriteRule   ^foo\.html$             foo.night.html


This provides the content of foo.day.html under the URL foo.html from 07:00-19:00 and at the remaining time the contents of foo.night.html. Just a nice feature for a homepage...


Top
 Profile  
 
 Post subject:
PostPosted: 04 Mar 2007 20:17 
Offline
User avatar

Joined: 25 Sep 2006 04:48
Posts: 242
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /cc/


# If the hour is 16 (4 PM) Then deny all access
RewriteCond %{QUERY_STRING} ^$
RewriteCond %{TIME_HOUR}%{TIME_MIN} ^(.*)$
RewriteRule ^.*$ http://site.com/cc/index.php?%1%2 [QSA,L,R]


RewriteCond %{TIME_HOUR}%{TIME_MIN} >0500
RewriteCond %{TIME_HOUR}%{TIME_MIN} <0800
RewriteRule ^index\.html$ /cc/morning/index.html

RewriteCond %{TIME_HOUR}%{TIME_MIN} >0800
RewriteCond %{TIME_HOUR}%{TIME_MIN} <1600
RewriteRule ^index\.html$ /cc/midday/index.html

RewriteCond %{TIME_HOUR}%{TIME_MIN} >1600
RewriteCond %{TIME_HOUR}%{TIME_MIN} <2200
RewriteRule ^index\.html$ /cc/afternoon/index.html

RewriteCond %{TIME_HOUR}%{TIME_MIN} >2200
RewriteCond %{TIME_HOUR}%{TIME_MIN} <0500
RewriteRule ^index\.html$ /cc/night/index.html


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: MSNbot Media and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB