解决nginxapache静态资源跨域访问问题详解1. apache静态资源跨域访问
到apache配置⽂件f
到这⾏
#LoadModule headers_module modules/mod_headers.so
把#注释符去掉
LoadModule headers_module modules/mod_headers.so
⽬的是开启apache头信息⾃定义模块
在独⽴主机配置⽂件中新增header
Header set Access-Control-Allow-Origin *
例如:
<VirtualHost *:88>
****************************
DocumentRoot "****************"
ServerName www.jb51
Header set Access-Control-Allow-Origin *
ErrorLog "***********"
CustomLog "****************************" common
<Directory "**************">
SetOutputFilter DEFLATE
Options FollowSymLinks ExecCGI
nginx和apache区别Require all granted
AllowOverride All
Order allow,deny
Allow from all
DirectoryIndex index.html index.php
</Directory>
</VirtualHost>
ApacheCopy
意思是对这个域名的资源进⾏访问时,添加⼀个头信息
重启apache
service httpd restart
2. nginx静态资源允许跨域访问
同理到相应域名配置⽂件
在server模块中添加配置:
add_header ‘Access-Control-Allow-Origin' ‘*';
例:
server {
listen    80;
add_header 'Access-Control-Allow-Origin' '*';
location /Roboto/ {
root  /home/images;
autoindex on;
}
}
nginx重载
./nginx -s reload
通过以上⽅法配置完后,再次跨域访问静态资源就没有问题了
以上既是nginx/apache静态资源允许跨域访问解决⽅法

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。