A while ago I learned how to set a variable in my .htaccess that can later on be user in PHP:
.htaccess
PHP:
Something that I could not figure out was how to use the defined variable inside the htaccess. While searching for CORS implementation, I ran across this post on stackoverflow.com:
There there is the answer to my question, how to set and get an environment variable in htaccess:
SetEnvIf Origin "^(.*\.example\.com)$" ORIGIN_SUB_DOMAIN=$1
Header set Access-Control-Allow-Origin "%{ORIGIN_SUB_DOMAIN}e" env=ORIGIN_SUB_DOMAIN