Solution for cors Issue
Hi, I'm trying to solve cors issue by using htaccess file.
The goal is to enable access to the server from local development environment.
I tried the code below but not working. Any advice would be appreciated.
Header add Access-Control-Allow-Origin [redacted]
Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"
Header add Access-Control-Allow-Methods "PUT, GET, POST, DELETE, OPTIONS"
A system administrator I asked about this stated this CORS on Apache article may prove helpful as well.