Apache multiple allow origin (enable CORS) for multiple domains

筆記一下

Apache web server 只能設定一次 Access-Control-Allow-Origin header,如果有多個 domain 需要設定的話,通常會習慣在 .htaccess 內處理

但如果要在 apache 本身的設定內(例如 site-enabled or conf-enabled)弄好,則需要 regex 幫忙

SetEnvIf Origin "^https?://[^/]*(ulsee)\.com$" ORIGIN=$0
Header set Access-Control-Allow-Origin %{ORIGIN}e env=ORIGIN

參考: https://gist.github.com/brianlmoon/2291111c5c69252c85f4