如何使用PHP启用CORS

时间:2017-11-24 18:46:04

标签: php cors wamp

我有一个角度4的应用程序与位于WAMP(www文件夹)的PHP脚本交谈,它们都在我的本地机器上。当我点击脚本时,我在浏览器中记录了此错误。

No 'Access-Control-Allow-Origin' header is present on the requested resource. 
Origin 'http://localhost:4200' is therefore not allowed access. 
The response had HTTP status code 404.

我知道它,因为我试图从localhost访问localhost,发生此问题。

我做了一些阅读,似乎我需要从wamp服务器修复它。不知道如何在wamp上做到这一点。

1 个答案:

答案 0 :(得分:1)

如评论所述,问题在于您需要允许脚本中的所有来源。

//at the very begining of your php script.
header('Access-Control-Allow-Origin: *');