Есть сайт на HTTPS к нему идет запрос с HTTP возможно ли сделать запрос:
Пример php:
<?php
$___notjson = 1;
header("Access-Control-Allow-Origin: http://fiddle.jshell.net");
header("Access-Control-Allow-Headers: http://fiddle.jshell.net");
header("Access-Control-Allow-Credentials: true");
header("Access-Control-Max-Age: 1000");
header("Access-Control-Allow-Headers: X-Requested-With, Content-Type, Origin, Cache-Control, Pragma, Authorization, Accept, Accept-Encoding");
header("Access-Control-Allow-Methods: PUT, POST, GET, OPTIONS, DELETE");
echo 'test'
?>
Ajax:
$.ajax({
type: "POST",
crossDomain: true,
url: "//test.ru/php/api/1.php",
success: function(data){
alert(data)
}
});
В ответ только: has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Доступа к .htaccess нет.