In .htaccess I have it as shown below. But I keep getting errors.
Access to XMLHttpRequest at "https:..." from origin "https://..." has been blocked by CORS Policy: 'Access-Control-Allow-Origin' header does not exist on Requested resource.
Header set Access-Control-Allow-Origin "*" Header set Access-Control-Allow-Origin "PUT, POST, DELETE, GET, OPTIONS" Header set Access-Control-Allow-Origin "Accept, Authorization, Content-Type" RewriteEngine On Options All -Indexes # ROUTER WWW Redirect. RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # ROUTER HTTPS Redirect RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteCond %{HTTPS} off RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # ROUTER URL Rewrite RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ index.php?route=/ [L,QSA]
You can only have one "Allow origin" header, so the last header will be interpreted.