我们在前面分享了很多关于yii框架的知识,还专门制作了一个yii框架专题供大家学习。本文我们将实例讲述yii隐藏url中index.php的方法。分享给大家供大家参考,具体如下:
一、修改config/下的main.php里的:
'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>',
),
),
二、修改网站根目录下.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
以上内容就是yii隐藏url中index.php的方法,希望能帮助到大家。
相关推荐:
yii framework框架模块开发
加载yii自带的验证码功能的方法
php yii框架之数据库查询操作总结
以上就是yii如何隐藏url中index.php的详细内容。