我已經開發了一個web應用程序,現在想用yii重寫yii,im中的url。重寫模式已開啓並正在處理除yii之外的其他php項目。我目前的網址是/myhost/servers_cms/index.php?r=users/admin,但我想要這個/ myhost/servers_cms/users/admin。yii自定義url重寫
這裏是我的main.php代碼
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,
'caseSensitive'=>false,
),
的.htaccess代碼
RewriteEngine On
RewriteBase /servers_cms
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php/$1 [L,QSA]
感謝讓我檢查 –