在使用lnmp一键安装报的时候,我们会遇到图片跨域问题。
No 'Access-Control-Allow-Origin' header is present on the requested resource
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|mp3)$ { expires 30d; add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; }
可以在Nginx配置下加入上面的配置,即可解决。
重启lnmp环境,即可解决该问题。
Apache环境的话可以看下这边文章的处理方法:apache如何解决跨域资源访问
文章评论(0)