gpt4 book ai didi

php - 如何解决rest api中的CORS预检错误

转载 作者:行者123 更新时间:2023-12-04 19:31:16 25 4
gpt4 key购买 nike

我们在一台服务器上有两个站点。我们创建了一个 rest api,api 后端代码位于 Site1.com。
在第二个站点上,有一个前端向第一个站点的 API 发送请求
但是我们遇到错误 405 和这个错误:
跨域请求被阻止:同源策略不允许读取位于 http://site1.com/t.php 的远程资源. (原因:CORS 预检响应没有成功)
Site1.com 上的 .htaccess:

<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header always set Access-Control-Allow-Methods "POST, GET, OPTIONS, DELETE, PUT"
Header always set Access-Control-Allow-Headers "x-requested-with, Content-Type, origin, authorization, accept, client-security-token"
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} OPTIONS
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
API 代码 Site1.com/t.php:
header("Access-Control-Allow-Origin: *");
header("Content-Type: application/json; charset=UTF-8");
header("Access-Control-Allow-Methods: POST");
header("Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With");
echo json_encode($_POST, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
控制台浏览器:
OPTIONS

scheme : http
host : Site1.com
filename : /t.php
Address : ***.8.173.***:80
Status405
Method Not Allowed
VersionHTTP/1.1
Transferred431 B (0 B size)


Access-Control-Allow-Headers : x-requested-with, Content-Type, origin, authorization, accept, client-security-token
Access-Control-Allow-Methods : POST, GET, OPTIONS, DELETE, PUT
Access-Control-Allow-Origin : *
Allow :

Connection
Keep-Alive
Content-Length
230
Content-Type
text/html; charset=iso-8859-1
Date
Mon, 28 Sep 2020 12:19:28 GMT
Keep-Alive
timeout=2, max=99
Server
Apache/2

Accept
*/*
Accept-Encoding
gzip, deflate
Accept-Language
en-US,en;q=0.5
Access-Control-Request-Headers
content-type
Access-Control-Request-Method
POST
Connection
keep-alive
Host
Site2.com
Origin
http://Site2.com
Referer
http://Site2.com/
User-Agent
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:80.0) Gecko/20100101 Firefox/80.0

最佳答案

这个问题有两个方面:
1- 前端:
在您的前端 js 请求中,您应该确保发送带有表单数据的数据。
2-后端:
在您的后端代码中,您应该直接使用 $_POST 全局获取请求,而不是使用 json_decode(file_get_contents("php://input"), true)。

关于php - 如何解决rest api中的CORS预检错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64102243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com