php 获取不到header中的Authorization

我要通过JWT 验证登录信息 代码首先会查找post过来的参数有没有token 没有 则会去header头部中获取

但如果是apache环境下 默认是不能获取Authorization信息的 需要配置

在apache/config/httpd.conf文件中加入以下配置


RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0

就可以获取到了

你可能感兴趣的:(php 获取不到header中的Authorization)