温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么在Yii框架中配置路由

发布时间:2021-04-13 16:25:34 来源:亿速云 阅读:270 作者:Leah 栏目:开发技术

这篇文章给大家介绍怎么在Yii框架中配置路由,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

方法一:使用.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框架中配置路由就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

yii
AI