yii index.php의 숨겨진 설정 방법: 먼저 아파치의 다시 쓰기 모듈을 활성화한 다음 다시 쓰기 전에 "#" 기호를 제거한 다음 ".htaccess" 파일을 생성하고 마지막으로 "mail.php"를 수정합니다. ". ㅋㅋㅋ .php 다음 내용으로 .htaccess 파일을 만듭니다.
LoadModule rewrite_module modules/mod_rewrite.so로그인 후 복사
마지막으로 yii 구성 파일 mail.php에
<IfModule mod_rewrite.c> Options +FollowSymLinks IndexIgnore */* RewriteEngine on # if a directory or a file exists, use it directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # otherwise forward it to index.php RewriteRule . index.php </IfModule>
를 추가합니다. 이렇게 하면 index.php가 숨겨집니다.
yii tutorial
"위 내용은 yii index.php의 숨겨진 설정 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!