Index.php ファイルを非表示にする手順を要約します
Index.php ファイルを非表示にする手順を要約すると
1. Apache の mod_rewrite モジュールを有効にします
LoadModule rewrite_module modules/mod_rewrite.so の前にある「#」記号を削除します
に "AllowOverride All" があります。2. プロジェクトの /protected/config/main.php にコードを追加します:
'components'=>array(
..
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,// false であることに注意してください。引用符は使用しないでくださいマーク
urlSuffix'=>'.html',
'rules'=>array(
'sites'=>'site/index',
),
)、
..
)、
コードをコピー
3. 次の内容のファイル「.htaccess」を、index.php ファイルと同じディレクトリに追加します。 🎜> Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# ディレクトリまたはファイルが存在する場合は、それを直接使用します
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{request_filename}! - d
index.php rewriterule。