yii与uniapp交互(Yii框架的路由配置方法分析)
类别:编程学习 浏览量:282
时间:2021-10-24 10:15:20 yii与uniapp交互
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框架的PHP程序设计有所帮助。
原文链接:https://blog.csdn.net/fujian9544/article/details/87717570
您可能感兴趣
- yii2支持的数据库(Yii框架日志操作图文与实例详解)
- yii2和laravel框架哪个比较简单(关于Yii中模型场景的一些简单介绍)
- yii2对比springboot(Yii框架函数简单用法分析)
- php使用yield处理并发(Yii2.0框架模型多表关联查询示例)
- apache和yii域名配置(yii框架数据库关联查询操作示例)
- 基于yii2框架的开源系统(Yii框架参数配置文件params用法实例分析)
- yii2对比springboot(Yii框架实现对数据库的CURD操作示例)
- php使用yield处理并发(Yii框架中使用PHPExcel的方法分析)
- 使用mui制作页面案例(Yii框架页面渲染操作实例详解)
- yii框架的常用组件使用(Yii框架的布局文件实例分析)
- yii与uniapp交互(Yii框架的路由配置方法分析)
- python如何使用yield(YII2.0框架行为Behavior深入详解)
- yii2支持的数据库(Yii框架常见缓存应用实例小结)
- yii框架使用教程(Yii框架操作cookie与session的方法实例详解)
- yii2支持php7.2吗(Yii框架通过请求组件处理get,post请求的方法分析)
- yield函数详解(Yii框架的redis命令使用方法简单示例)
- 天空是什么颜色(天空是什么颜色的英语)
- 高马尾扎发(高马尾扎发教程视频)
- 这里输入关键词(请手动输入关键词)
- 小说 顾瑾岚拿出一套飞行棋,别说你连飞行棋都不会哦(顾瑾岚拿出一套飞行棋)
- 金品公司 界界乐中秋限定飞行棋礼盒 露营藤篮礼盒全新上市(界界乐中秋限定飞行棋礼盒)
- 必看 8月,相比七夕,更需要注意的是这些事(必看8月相比七夕)
热门推荐
- sql server网络配置
- mysql 多表连接查询(MySQL多表查询的具体实例)
- phpstudy搭建网站全过程(phpstudy在本地搭建多个网站的方法)
- SQL Union和Union All的用法和区别
- dedecms屏蔽规则(织梦dedecms修改任意管理员漏洞处理方法)
- jquery 实现对联广告
- css设置隐藏左右边框(CSS 实现元素较宽不能被完全展示时将其隐藏的方法)
- iphone h5调试(H5页面适配iPhoneX就是那么简单)
- phplaravel快速开发平台(laravel框架实现去掉URL中index.php的方法)
- python内置函数使用方法(Python神奇的内置函数locals的实例讲解)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9