SetEnvIf / SetEnvIfNoCase Kullanımı
Apache virtual host dosyası içerisinde ya da htacess içerisinde kullanılan SetEnv komutunu bir koşula bağlı olarak kullanabilirsiniz:
SetEnvIf Host “www.example.com” APPLICATION_ENV=production
SetEnvIf Host “beta.example.com” APPLICATION_ENV=development
Case-Insensitive kullanımı için :
SetEnvIfNoCase Host “www.example.com” APPLICATION_ENV=production
SetEnvIfNoCase Host “beta.example.com” APPLICATION_ENV=development
Dikkat edilmesi gerek nokta eğer bir SetEnv varsa SetEnvIf tanımını ezer.
Yani sistem önce SetEnvIf komutlarını işliyor sonrasında SetEnv komutlarını.
Bu da kullanımı birazcık kısıtlıyor ama yine de işe yarar bir şey!
Recent Comments