nginx解决静态页面中ajax跨域方案配置

nginx 配置内容

server {

listen 9999;#监听端口

server_name localhost;#域名

add_header Access-Control-Allow-Origin *; # 允许跨域

#charset koi8-r;

#access_log logs/host.access.log main;

location / {

root D:/html/index.html;#静态html项目的地址

index index.html;

autoindex off;

}

location /test/ {

#以下为Ajax中跨域配置项

add_header 'Access-Control-Allow-Origin' '*';

add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';

add_header 'Access-Control-Allow-Headers' '*';

add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';

proxy_pass http://123.456.789.10:1234;# 测试请求地址为你项目具体请求地址

}

}

nginx 命令:

start nginx 启动nginx

nginx -s stop 快速关闭nginx

nginx -s reload 改变了Nginx相关配置,需要重新加载配置而重载。

html 页面请求

var getUrl='http://127.0.0.1:9999/test/net/testtarget'

$.get(getUrl,param,function(data,status){

console.log(data)

console.log(status)

});

相关推荐
阿星智力囊6 小时前
Thinkphp6+nginx环境报错信息不显示,接口直接报500和CORS跨域(错误的引导方向),真坑啊
运维·nginx·php·thinkphp6
L***86539 小时前
Failed to restart nginx.service Unit nginx.service not found
运维·nginx
z***565612 小时前
Nginx实现接口复制
运维·nginx·junit
云和数据.ChenGuang17 小时前
mysqld.service is not a native service问题解决!
运维·nginx·运维技术·运维工程师技术
Altair123119 小时前
nginx的https的搭建
运维·网络·nginx·云计算
记得记得就1511 天前
【Nginx 性能优化与防盗链】
运维·nginx·性能优化
a***59261 天前
用nginx正向代理https网站
运维·nginx·https
丸子哥哥1 天前
同一个域名,如何添加多个网站?
服务器·前端·nginx·微服务
San30.2 天前
深入理解 JavaScript 异步编程:从 Ajax 到 Promise
开发语言·javascript·ajax·promise