支持 CORS 的服务器?

发布于 2024-10-16 20:51:42 字数 25 浏览 1 评论 0原文

我想知道有很多服务器支持CORS吗?

I wonder if there are many servers that are supporting CORS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

梦罢 2024-10-23 20:51:42

要使您的 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 "*"'); ?>

尬尬 2024-10-23 20:51:42

Tomcat 用户可以使用 CORS 过滤器

Tomcat users can use the CORS Filter

能怎样 2024-10-23 20:51:42

您可以在此处找到支持 CORS 的 Python 2.7 服务器的简单实现

You can find here a simple implementation of a Python 2.7 server supporting CORS

亣腦蒛氧 2024-10-23 20:51:42

只需

  • 创建文件“proxy.js”并添加以下代码即可使用此代码运行您的 cors 代理服务器

  • 并运行节点 proxy.js

let host = process.env.HOST || "0.0.0.0";
let port = process.env.PORT || 8000;
let cors_proxy = require("cors-anywhere");
cors_proxy
  .createServer({
    originWhitelist: [],
    requireHeaders: ["origin", "x-requested-with"],
    removeHeaders: ["cookie", "cookie2"],
  })
  .listen(port, host, () => {
    console.log("Cors Proxy running on 8000...");
  });

启动该服务器后,您可以像这样使用它
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

let host = process.env.HOST || "0.0.0.0";
let port = process.env.PORT || 8000;
let cors_proxy = require("cors-anywhere");
cors_proxy
  .createServer({
    originWhitelist: [],
    requireHeaders: ["origin", "x-requested-with"],
    removeHeaders: ["cookie", "cookie2"],
  })
  .listen(port, host, () => {
    console.log("Cors Proxy running on 8000...");
  });

after starting this server you can use it like
http://localhost:8000/https://example.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文