.htaccess ファイルで環境変数を定義し、その変数を使用して書き換え条件を実行しようとしています。以下は私の .htaccess ファイルにあるものですが、書き換えが機能していません:
RewriteEngine on
#set to 'live' or 'maintenance'
SetEnv ENVIRONMENT maintenance
#If the ENVIRONMENT variable is 'mainetnance' then show a maintenance page to the users
RewriteCond %{ENV:ENVIRONMENT} maintenance
RewriteRule ^(.*)$ /maintenance.html
これの目的は、更新のためにリポジトリをプルするために GitHub のフックの 1 つからポスト リクエストを受信したときに、PHP で .htaccess ファイルを編集することにより、サイトをプログラムでメンテナンス モードに設定することです。