apache2 apache webserver error page customize apache webserver error page customize apache webserver 에러 페이지는 응답코드에 따라 파일이 있음. 예를 들면, 404 --> 404_NOT_FOUND.html 위와 같이 있으며, 이런 오류 페이지를 커스터마이징 하는 방법이 있음. 자세한건 https://www.ionos.com/community/server-cloud-infrastructure/apache/how-to-configure-apache-to-use-custom-error-pages/ 참고 404_NOT_FOUND.html 내용을 수정하는 것도 나쁘지는 않다고 생각됨. 2021. 1. 24. apache httpclient post 방식 한글 깨짐 apache httpclient post 방식 한글 깨짐 한글 깨질 때 처리 방법 아래와 같이 하면, encoding 이 적용되서 한글 안깨짐. 내부 소스를 보니, encoding 존재하면 getBytes(encoding) 해서 처리하고, 없으면 ISO_8859_1 encoding 으로 getBytes 처리 함. 요약하면 Apache Http Utils 을 통해 Body 데이터를 받을 것이다. 그리고 이 받은 데이터를 bytes 로 변환할테고. 이 변환될 때, Encoding 을 끼워두면 된다. 아래는 예시 소스임. StringEntity entity = new StringEntity(body, encoding); Reference https://helloworld92.tistory.com/3 2021. 1. 5. 이전 1 다음