CORS (Cross-Origin Resource Sharing) bisa digunakan di paket Web, WordPress, dan Cloud hosting.
Anda hanya perlu menambahkan baris berikut ke file .htaccess website:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
Jika belum punya file .htaccess, buat file .htaccess terlebih dahulu dan tambahkan baris di atas untuk bisa menggunakan CORS.
Untuk mendefinisikan header CORS di file PHP, gunakan kode berikut ini:
<?php
header("Access-Control-Allow-Headers: Authorization, Content-Type");
header("Access-Control-Allow-Origin: *");
header('content-type: application/json; charset=utf-8');
?>
CATATAN:
CORS perlu ditambahkan ke sumber asli (origin source) agar resource dapat berfungsi normal.