일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- javascript
- codeigniter3
- 설정
- 옵션표
- 헬퍼
- function
- mysql
- CodeIgniter
- Database
- 웹 프로그래밍
- 그누보드
- phpDocumentor
- MSsql
- 안드로이드
- 함수
- rairen
- API
- jw player
- php
- 코드이그나이터
- config
- 후크
- html
- ajax
- FCM
- 영카트
- jquery
- APK
- CI3
- 라이렌
Archives
- Today
- Total
프로그램 개발서
[CI4] 카페24에 설치 해보기 본문
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 Byte 단위 표시용 함수 (0) | 2025.03.13 |
---|---|
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 |