支持 CORS 的服务器?
我想知道有很多服务器支持CORS吗?
I wonder if there are many servers that are supporting CORS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道有很多服务器支持CORS吗?
I wonder if there are many servers that are supporting CORS?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
要使您的 Web 服务器支持 CORS,只需让它返回另一个标头即可。
例如,在 Apache2 中,只需将此行添加到适用的 conf 文件中:
Header set Access-Control-Allow-Origin "*"
为了更安全(或者如果您无权访问您的服务器的conf文件)您可能不想在服务器中添加此标头,而仅在您真正需要时将其与服务器端代码一起添加。
例如,在 PHP 中,您可以这样做:(未经测试)
To make your web server support CORS, it is as easy as making it return another header.
For example, in Apache2, simply add this line to your applicable conf file:
Header set Access-Control-Allow-Origin "*"
To be more secure (or if you don't have access to your server's conf file) you might want to NOT add this header in your server, but only add it with your server-side code when you really want it there.
For example in PHP you could do this: (untested)
<? header('Access-Control-Allow-Origin "*"'); ?>
Tomcat 用户可以使用 CORS 过滤器
Tomcat users can use the CORS Filter
您可以在此处找到支持 CORS 的 Python 2.7 服务器的简单实现
You can find here a simple implementation of a Python 2.7 server supporting CORS
只需
创建文件“proxy.js”并添加以下代码即可使用此代码运行您的 cors 代理服务器
并运行节点 proxy.js
启动该服务器后,您可以像这样使用它
http://localhost:8000/https://example.com
use this code to run your cors proxy server just by
creating a file "proxy.js" and add below code
and run node proxy.js
after starting this server you can use it like
http://localhost:8000/https://example.com