코드이그나이터 https1 Codeigniter htaccess https 적용 Codeigniter를 사용하면 거의 필수적으로 아래와 같이 .htaccess 파일을 수정하여 index.php를 제거하고 사용할 것이다. .htacesss RewriteEngine on RewriteBase / RewriteCond $1 !^(index\.php|src|uploads|robots\.txt|favicon\.ico) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] https를 적용하려면 다른 소스코드를 바꿀 필요 없이 .htaccess 파일만 아래와 같이 바뀌주면 잘 적용이 된다. .htacesss RewriteEngine on RewriteCo.. 2021. 3. 19. 이전 1 다음