主页 > 知识库 > 解决nginx/apache静态资源跨域访问问题详解

解决nginx/apache静态资源跨域访问问题详解

热门标签:广东如何申请400电话 燃气管线地图标注颜色 哈尔滨400电话去哪办理 宁波400电话办理对企业的意义 400电话申请要什么条件 话术外呼系统 i智能电话机器人yeta 北京人工外呼系统厂家 西柏坡地图标注

1. apache静态资源跨域访问

找到apache配置文件httpd.conf

找到这行

#LoadModule headers_module modules/mod_headers.so

把#注释符去掉

LoadModule headers_module modules/mod_headers.so

目的是开启apache头信息自定义模块

在独立主机配置文件中新增header

Header set Access-Control-Allow-Origin *

例如:

<VirtualHost *:88>
 ServerAdmin admin@example.com
 DocumentRoot "****************"
 ServerName www.jb51.com
 Header set Access-Control-Allow-Origin *

 ErrorLog "***********"
 CustomLog "****************************" common
<Directory "**************">
 SetOutputFilter DEFLATE
 Options FollowSymLinks ExecCGI
 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静态资源允许跨域访问解决方法

标签:襄阳 西藏 阜阳 珠海 开封 湘潭 巴中 张家口

巨人网络通讯声明:本文标题《解决nginx/apache静态资源跨域访问问题详解》,本文关键词  解决,nginx,apache,静态,资源,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《解决nginx/apache静态资源跨域访问问题详解》相关的同类信息!
  • 本页收集关于解决nginx/apache静态资源跨域访问问题详解的相关信息资讯供网民参考!
  • 推荐文章