我只是学习yii框架并阅读本教程
约 yii how to setup url
约 yii how to setup url
但我不知道,假设我有10个控制器,我应该在配置文件中逐个定义控制器吗?
是否有更好的方法来为所有控制器设置友好的网址,例如www.yoursite.com/yourController/yourAction/yourID?
我认为codeigniter自动做到了…… yii怎么样?
在/protected/config/main.PHP中添加..
原文链接:https://www.f2er.com/php/135402.html'urlManager'=>array( 'urlFormat'=>'path','showScriptName' => false,),
在你的web根目录中.htaccess ..
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