是否可以在php中重定向502错误的网关?我已尝试在标头重定向位置设置502错误的网关。
header('502.html');
发布于 2018-07-31 22:18:20
在开头添加Location,如下所示:
Location
header('Location: 502.html');
http://php.net/manual/en/function.header.php
https://stackoverflow.com/questions/51615518
相似问题