PHP头文件()重定向在Google App Engine中

时间:2015-08-26 13:21:48

标签: php google-app-engine http-status-code-301

我尝试使用

在Google App引擎实例上进行标题重定向
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://".$location);
header("Connection: close");
die();

它正在开发我的本地开发环境。在Google App Engine上,我收到301,但它没有重定向到新位置,而是有白屏。

1 个答案:

答案 0 :(得分:1)

这是编码问题。我不得不urlencode()$ location的所有部分。在我当地的MAMP环境中没有问题。