0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

mod_rewrite で HTTP_HOST によってリダイレクト先を振り分ける

Last updated at Posted at 2019-10-10

概要

  • 稼働している環境によってリダイレクト先を切り替えたい。という要件があったので実現方法を模索

要件

  • 同じ内容の .htaccess ファイルを異なる環境で使う
  • 通常は host01.example.com にリダイレクトする
  • xxx.example.com で動いてる時だけ host02.example.com にリダイレクトする

実装してみた内容

  • ローカル変数 %{ENV:DEST_URL} に転送先アドレスを設定する
  • %{HTTP_HOST} でアクセスされているホストを判定
  • 合致する場合は %{ENV:DEST_URL} を上書きする
RewriteEngine on

# 一時変数にデフォルトの転送先を定義
RewriteRule .* - [E=DEST_URL:host01.example.com]

# %{HTTP_HOST} で引っ掛けて一時変数を上書き
RewriteCond %{HTTP_HOST} ^xxx¥.example¥.com$
RewriteRule .* - [E=DEST_URL:host02.example.com]

# リダイレクト
RewriteRule ^$  https://%{ENV:DEST_URL}/ [R=301,QSA,L]

参考

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?