Skip to content

Instantly share code, notes, and snippets.

@nixta
Last active March 19, 2024 22:52
Show Gist options
  • Star 39 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save nixta/0b98d7975562bc31c4c9 to your computer and use it in GitHub Desktop.
Save nixta/0b98d7975562bc31c4c9 to your computer and use it in GitHub Desktop.
.htaccess to add CORS to your website
# Add these three lines to CORSify your server for everyone.
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "GET,PUT,POST,DELETE"
Header set Access-Control-Allow-Headers "Content-Type, Authorization"

CORSify a folder in Apache

Add the above three lines to an .htaccess file to enable CORS for that folder and its subfolders. Of course, you could also add this to the httpd.conf file if you have access.

###Notes:

  • Ensure that the mod_headers Apache Module is enabled.
  • This will open things up pretty grandly. This may or may not be what you want.

###Disclaimer

  • Do at your own risk, etc. etc.
  • My Apache-fu is weak, so there may well be a better solution.
@ajeetberiha
Copy link

where to add this code ? on the very top of the .htaccess file

@dpnebert
Copy link

This will leave your website open to security vulnerabilities. Any, read that correctly, ANY site will be able to return data to your site, and if your site doesn't check to see if it is what it expects (sorry for the mouth full), it will run any code passed back. Don't leave open doors for intruders.

@zackrspv
Copy link

For CORS, even though the documentation states to use 'SET', it is recommended to use 'ADD' as that will work on most systems. If you notice that when you use the above code and you are still receiving the pre-flight or CORS errors, change 'set' to 'add' and you will most likely be fine.

@LussRus
Copy link

LussRus commented Jul 14, 2021

If this problem can't be solved by .htaccess, then try to put in your PHP file next:
header("Access-Control-Allow-Origin: *");

@talktonok
Copy link

If this problem can't be solved by .htaccess, then try to put in your PHP file next: header("Access-Control-Allow-Origin: *");

I don't understand. Which PHP file?

@onlinejo
Copy link

for security , change :

Header set Access-Control-Allow-Origin "*"

to you origin site comming from

Header Set Access-Control-Allow-Origin "https://mysite.mysite.com"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment