CI 프레임워크에서 index.php를 숨기는 방법: 먼저 Apache 구성 파일을 수정한 다음 htaccess 파일을 만든 다음 Ci 구성 파일을 수정하고 마지막으로 Apache를 다시 시작합니다.
권장: "PHP 비디오 튜토리얼"
去掉前面的#
LoadModule rewrite_module modules/mod_rewrite.so
Ubuntu의 경우 Apache 설치 디렉터리 mods 활성화 폴더에 소프트 링크를 생성합니다.
Enter /mods-enabled,
-s ../mods-available/rewrite.load rewrite.load # 要确保 ../mods-available/rewrite.load 文件存在,不存在需要安装rewrite模块
참고: 아파치 설치 디렉터리 아래: mods-available---비활성화 모듈, mods-enabled------활성화 모듈
아파치 구성 파일 conf/httpd.conf 끝에 다음 코드를 추가하거나 sites-enabled 폴더에 새 .conf 파일을 생성할 수 있습니다. 파일 이름은 임의적이거나 mods-enabled처럼 생성할 수 있습니다. / 링크.
Alias /athena "/home/liuqian/workspace/athena/" # 依据实际情况改为自己的路径<Directory "/home/liuqian/workspace/athena/"> # 依据实际情况改为自己的路径 Options Indexes MultiViews FollowSymLinks AllowOverride All # 主要是这个 Order allow,deny Allow from all</Directory>
참고: Apache 설치 디렉터리: sites-available---언로드된 구성 파일, sites-enabled---로드된 구성 파일
을 프로젝트 폴더에 추가하고 . index.php가 있는 디렉터리의 htaccess 파일
~
rreee위 내용은 CI 프레임워크에서 index.php를 숨기는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!