반응형
* http.conf 포트 & Directory 설정
1. 포트 설정 : Listen 8020 , ServerName localhost: 8020
- 80포트는 이미 사용중인 포트일수 있으니 (포트에서 오류가 발생하면) 8020으로 변경
2. Directory 설정
<Directory />
AllowOverride none
Require all granted
</Directory>
Apache에서 사용되는 모든 파일을 대상으로 접근 제한을 설정할 수 있다.
Require all denied 를 all granted 로 변경
3. Include conf/extra/httpd-mpm.conf 를 찾아 주석처리
# Include conf/extra/httpd-mpm.conf
* PHP 환경 설정
1. xampp 폴더에 htddocs 파일들 삭제 -> 삭제후 폴더 우클릭 -> code(으로) 열기
2. Visual Code 에서 index.html 생성
+ Not found 가 뜰경우
httpd.conf.....에서 AllowOverride none 을...
AllowOverride all 로 변경 !
반응형
'Web Back-End > PHP' 카테고리의 다른 글
PHP 학습 04 - SQL 인젝션 (0) | 2021.06.01 |
---|---|
PHP 학습 03 - DB 와 연결하기 (0) | 2021.05.23 |
PHP 학습 02 - 기본문법, $_GET[], dump, intval , isset (0) | 2021.05.23 |