Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To ensure that your changes are correct, strongly recommended that you use

Code Block
apachectl -t

to checck your configuration changes for errors. After this passes, you may need to reload Apache to make sure your changes are applied by running the command

Code Block
sudo service httpd restart

To avoid CORS errors, following configs needs to be added to fully CORS-enable an Apache web server in <Directory>, <Location>, <Files>, <VirtualHost> of /etc/httpd/conf/httpd.conf or .htaccess

Code Block
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Headers "*"
Header set Access-Control-Allow-Methods "*"


To ensure that your changes are correct, strongly recommended that you use

Code Block
apachectl -t

to checck your configuration changes for errors. After this passes, you may need to reload Apache to make sure your changes are applied by running the command

Code Block
sudo service httpd restart


To test if your server has no issue associated with CORS, please visit http://www.test-cors.org