Web Dev Log
문자열 배열로 변환하기
let str = "hello world. new world.";let arr = str.split(" "); // 공백으로 구분해서 배열 저장 for(let i = 0; i let tmp = arr[i]; console.log(i + " => " + tmp);}# 결과0 => hello1 => world.2 => new3 => world.
Javascript/javascript
2025. 2. 18. 00:41

apache tomcat 버전 정보를 숨기려면 server.xml 를 수정 안에 추가 설정 적용 전 설정 적용 후
Server/Tomcat
2022. 6. 10. 16:38
apache 버전 정보 숨기기
ServerTokens Prod httpd.conf 설정 변경
Server/Aache
2022. 6. 10. 16:34