这篇文章主要介绍了Yii框架的路由配置方法,结合实例形式总结分析了Yii框架路由的常见配置与使用操作技巧,需要的朋友可以参考下
本文实例讲述了Yii框架的路由配置方法。分享给大家供大家参考,具体如下:
取消index.php
这两种方法都是在自动添加index.php
方法一:使用.htaccess
添加.htaccess文件 与index.php同级
RewriteEngine on
# if a directory or a file exists, use the request directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward the request to index.php
RewriteRule . index.php
方法二:vhost
<VirtualHost *:80>
ServerName public.oa.com
DocumentRoot "D:\phpStudy\PHPTutorial\WWW\OA\frontend\web"
<Directory "D:\phpStudy\PHPTutorial\WWW\OA\frontend\web">
# use mod_rewrite for pretty URL support
RewriteEngine on
# If a directory or a file exists, use the request directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward the request to index.php
RewriteRule . index.php
# use index.php as index file
DirectoryIndex index.php
# ...other settings...
# Apache 2.4
Require all granted
## Apache 2.2
# Order allow,deny
# Allow from all
</Directory>
</VirtualHost>
Yii配置
'urlManager' => [
//美化路由
'enablePrettyUrl' => true,
//不启用严格解析
'enableStrictParsing' => false,
//index.php是否显示
'showScriptName' => false,
//伪静态化 seo
'suffix' => '.html',
//美化规则
'rules' => [
//第一条:文章详细页
'<controller:\w+>/<id:\d+>'=>'<controller>/detail',
//第二条:文章列表页
'post'=>'post/index',
],
],
更多关于Yii相关内容感兴趣的读者可查看本站专题:《Yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
织梦狗教程
本文标题为:Yii框架的路由配置方法分析


基础教程推荐
猜你喜欢
- TP5(thinkPHP5框架)基于bootstrap实现的单图上传插件用法示例 2023-01-19
- PHP数据加密方式梳理介绍 2023-07-03
- PHP实现创建一个RPC服务操作示例 2023-04-01
- laravel model模型定义实现开启自动管理时间created_at,updated_at 2023-03-02
- PHP实现生成数据字典功能示例 2022-10-18
- TP5 连接多个数据库及使用方法 2023-08-30
- thinkPHP3.2.2框架行为扩展及demo示例 2022-11-07
- PHP删除数组中指定值的元素常用方法实例分析【4种方法】 2022-11-12
- PHP使用SMTP邮件服务器发送邮件示例 2022-11-16
- php中使用array_filter()函数过滤数组实例讲解 2023-05-19