Das Beispiel in diesem Artikel beschreibt, wie Yii index.php in der URL versteckt. Teilen Sie es als Referenz mit allen. Die Details lauten wie folgt:
1. Ändern Sie die main.php unter config/:
'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>', ), ),
2. Ändern Sie den Inhalt der .htaccess-Datei im Stammverzeichnis der Website wie folgt:
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
Ich hoffe, dieser Artikel wird hilfreich sein für jedermanns PHP-Programmdesign basierend auf dem Yii-Framework.
Weitere Artikel zu Yiis Methode, index.php in der URL zu verstecken, finden Sie auf der chinesischen PHP-Website!