프로그램 개발서

[CI4] 카페24에 설치 해보기 본문

PHP

[CI4] 카페24에 설치 해보기

rairen 2023. 12. 30. 03:30

 

1. CodeIgniter 4 Download

 

다운로드 링크 : Welcome to CodeIgniter

 

Welcome to CodeIgniter

CodeIgniter 3 is the legacy version of the framework, intended for use with PHP 5.6+. This version is in maintenance, receiving mostly just security updates, and the current version is 3.1.13.

codeigniter.com

 

 

2. Codeigniter 4 FTP Upload

 

3. `env` 파일의 파일명을 `.env` 로 변경하기

단, 각 설정을 env 파일을 통해 하실 경우 변경하시면 됩니다.

env파일을 사용하지 않으실 경우 변경하지 않고 진행해도 상관 없습니다.

4. `.htaccess` 파일을 `Document Root` 에 생성하기

 

5. `.htaccess` 작성

더보기
php_flag register_globals Off
php_value mysql.default_charset UTF8
 
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(public/.*)$
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

 

여기까지하면 일단 기본 설치는 완료됩니다.

 

이후에는 작업환경에 맞게 설정을 추가하면 됩니다.

반응형

'PHP' 카테고리의 다른 글

PHP 5.4.16 버전에서 FCM HTTP V1 푸시 알림 보내는 방법!!  (0) 2024.09.09
[phpDocumentor]@todo  (0) 2023.12.06
[phpDocumentor]@version  (0) 2023.12.06
[phpDocumentor]@abstract  (0) 2023.12.06
함수 모음  (0) 2023.06.29