我正在尝试使用YII进行URL重写。 有没有办法显示页面扩展名,如.html或.php? 请帮助我在YII中成为新人。
答案 0 :(得分:2)
使用urlSuffix
参数
array(
......
'components'=>array(
......
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'pattern1'=>'route1',
'pattern2'=>'route2',
'pattern3'=>'route3',
),
'urlSuffix' => '.html'
),
),
);