LoginSignup
5
5

More than 5 years have passed since last update.

指定時間までhtaccessでトップページ系をすべてリダイレクトする

Last updated at Posted at 2017-12-06

スラッシュ無し・スラッシュ有り・index.htmlをリダイレクトする。

http://localhost
http://localhost/
http://localhost/index.html

下記で時間指定・トップページ系すべてリダイレクト可能。

RewriteEngine On
RewriteCond %{TIME} <20171207000000
RewriteRule ^(/)?(index\.html)?$ /Temp/ [R=302,L]

※ 一時的な移動を行いたいため、R=302を指定しています。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5