AH02429: Response header name 'Last-Modified ' 에러

AH02429: Response header name 'Last-Modified ' 에러는 문서 상단에 header로 Ladt-Modified를 설정할 때 나타난다.

header("Last-Modified: " .gmdate("D, M Y H : i: s") . " KST"); 형식으로 보통 많이 쓰는데

"Last-Modified: " 에서 공백이 들어가 나타나는 경우가 많다. 그러므로 아래와 같이 바꿔주자.

 

예시)

 

header("Last-Modified: ".gmdate("D, M Y H : i: s") . " KST"); // Bad;

header("Last-Modified:".gmdate("D, M Y H : i: s") . " KST"); // Good!