Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 비밀번호정규식
- usb efi 시스템 파티션 삭제
- 윈도우 환경 아파치 mod_security2 설치
- PHP 구글 OTP 연동
- 자바스크립트비밀번호검증
- php 배열제거
- PHP 정규식 예제
- 윈도우 mod_security2
- 비밀번호검증정규식
- (using password: YES)" when trying to connect
- group_concat 구분자
- php 이미지 url 검증 함수
- mariadb upgrade
- 숫자 3자리(천단위) 마다 콤마 찍기
- html pdf 변환
- mysqldump: Got error: 1045
- bootstrap
- mod_security2 설치
- sha-2 root
- javascript
- modsecurity 설치
- apple push notification service (apns) is changing
- postfix 설치
- 아파치 웹 서버의 정보 숨기기
- 파라미터 & 오류
- wsl2 우분투에 docker 설치
- PHP 구글 OTP 인증
- httpd.conf 보안 설정
- bootstrap modal
- 유튜브 플레이 리스트 저장
Archives
- Today
- Total
목록2025/04/07 (1)
투덜이 개발자

apache mod rewrite Apache에서 mod_rewrite 모듈이 활성화되어 있는지 확인하려면 아래 방법을 사용하시면 됩니다. 모듈이 활성화 확인Ubuntu/Debian 계열apache2ctl -M | grep rewrite출력에 rewrite_module이 보이면 활성화된 상태입니다: rewrite_module (shared) CentOS/RHEL 계열httpd -M | grep rewrite 모듈이 비활성화된 경우 활성화 방법Ubuntu/Debian 계열sudo a2enmod rewritesudo systemctl restart apache2CentOS/RHEL 계열 보통 /etc/httpd/conf/httpd.conf에서 다음 줄이 주석 처리되어 있다면 해제하면 됩니다:LoadMod..
OS/Linux
2025. 4. 7. 11:34