gpt4 book ai didi

.htaccess - 使用 htaccess 在特定日期/时间重定向

转载 作者:行者123 更新时间:2023-12-01 13:18:59 25 4
gpt4 key购买 nike

是否可以在特定日期/时间重定向?

例如...... 7 月 30 日上午 10 点重定向网站的 htaccess 代码是什么?

更新

这是我当前的 htaccess 代码,其中将包含我的要求(见上文)

RewriteEngine On 
RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ /$1 [R,L]

RewriteCond $1 !^(index\.php)
RewriteCond %{REQUEST_URI} !(\.png|\.jpg)$
RewriteRule ^(.*)$ index.php?l=$1 [L]

RewriteCond %{THE_REQUEST} ^GET\ /(.+)\.html [NC]
RewriteRule ^ /%1? [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.html [NC,L]

最佳答案

您可以使用此规则(您需要启用 mod_rewrite )

RewriteEngine On

RewriteCond %{TIME} >=20180730100000
RewriteCond %{TIME} <20180730110000
RewriteRule ^ /other_page [R,L]

它将(暂时)重定向到 /other_page之间 10:00:00 AM10:59:59 AM ( 仅在 7 月 30 日 )

说明: %{TIME}值格式为 yyyymmddhhiiss在哪里:
  • yyyy = 年份(4 位数字)
  • mm = 月(2 位数字)
  • dd = 天(2 位数)
  • hh = 小时(2 位数)
  • ii = 分钟(2 位数)
  • ss = 秒(2 位数)
  • 关于.htaccess - 使用 htaccess 在特定日期/时间重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51539371/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com