Yii Index.php の隠し設定方法: まず、Apache の書き換えモジュールを有効にし、書き換え前に「#」記号を削除し、次に「.htaccess」ファイルを作成し、最後に yii 設定ファイル「mail.php」を変更します。 php「その通りです。
#yii Hideindex.php
LoadModule rewrite_module modules/mod_rewrite.so
<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>
'urlManager'=>array( 'urlFormat'=>'path', 'showScriptName'=>false, 'rules'=>array( '<controller:\w+>/<id:\d+>'=>'<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>', '<controller:\w+>/<action:\w+>'=>'<controller>/<action>', ), ),
yii チュートリアル >>
以上がyiiindex.phpの隠し設定方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。