环境
- 系统:Ubuntu 20.04
- 服务:Apache 2.4.41
修改配置
开启 Header 功能
$ sudo a2enmod headers
修改 Apache 配置,其他系统是 httpd.conf 但在 Ubuntu 系统中是 /etc/apache2/apache2.conf
$ sudo vi /etc/apache2/apache2.conf
在 <Directory /var/www/> 下添加一行 Access-Control-Allow-Origin 的配置
<Directory /var/www/>
Options FollowSymLinks
AllowOverride All
Require all granted
Header set Access-Control-Allow-Origin *
</Directory>
保存退出,然后检测配置是否有错
$ apachectl -t
Syntax OK
重新加载配置并重启服务即可
$ sudo /etc/init.d/apache2 force-reload
$ sudo /etc/init.d/apache2 restart