Apache   rewriteRule   问题  

Apache   rewriteRule   问题  

我有一个有关于Apache RewriteRule 的问题想请教各位高手

现有 http://a.com/hhmmsspro1
hhmmss: 是按照时间生成的,小时,分钟,秒  例如:082035pro1 是在 8点20分35秒生成的

现在想要作如下映射:
在10秒钟以内,将映射到如下文件: product/1.html 
(即:8点20分45秒 以前, http://a.com/hhmmsspro1  ---〉http://a.com/product/1.html)
10秒钟以后,将映射到如下文件: product/default.html
(即:8点20分45秒 以后, http://a.com/hhmmsspro1  ---〉http://a.com/product/default.html)

请问用Apache RewriteRule and RewriteCond 怎么才能实现呢?

万分感谢!!


没分
有没有那位高手指点一下。。 万分感谢。。。。。
为什么一定要做成RewriteRule呢
你完全可以做成pro1.php?time=hhmmss
然后根据取到的time值,读取product/default.html或者product/1.html显示到客户端就行了