index.php 파일 숨기기 단계 요약
1. Apache의 mod_rewrite 모듈을 엽니다.
LoadModule rewrite_module module/mod_rewrite.so 앞에 있는 “#” 기호를 제거합니다.
2. 프로젝트의 /protected/config/main.php에 코드를 추가합니다:
'comComponents'=>array(
RewriteEngine on
# 디렉터리나 파일이 있으면 직접 사용
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME } !-d
# 그렇지 않으면 index.php로 전달
RewriteRule . index.php
코드 복사
이 방법으로 index.php 항목 파일을 숨길 수 있습니다.