php教程 yii框架路由配置

 所属分类:php教程

 浏览:111次-  评论: 0次-  更新时间:2022-06-01
描述:这是一篇php教程 yii框架路由配置的说明内容,如果你想学习查找类似的文章,可以进入php教程获得最新优质资料。 首先要在服务器配置(http...
这是一篇php教程 yii框架路由配置的说明内容,如果你想学习查找类似的文章,可以进入php教程获得最新优质资料。

首先要在服务器配置(httpd.conf)中开启重写模块

#开启重写模块,将其前面的#去掉
LoadModule rewrite_module modules/mod_rewrite.so
#Directory中允许覆盖开启
<Directory "${SRVROOT}/htdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

在目录下加入服务器配置文件.htaccess

RewriteEngine on

###############################
# @email test@test.com
# @author test
###############################

#重写规则
#如果是一个目录或者文件,就访问目录或者文件
RewriteCond %{REQUEST_FILENAME} !-d

#如果文件存在,就直接访问文件,不进行下面的RewriteRule
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule . index.php

在框架配置项\frontend\config\main.php中加入urlManager配置项

'urlManager' => [    
'enablePrettyUrl' => true,
    'showScriptName' => false,    
    //'suffix' => '.html',//URL后缀],

最后,重启服务器。

相关文章教程推荐:yii教程

以上就是yii框架路由配置的详细内容,更多请关注zzsucai.com其它相关文章!

 标签:
积分说明:注册即送10金币,每日签到可获得更多金币,成为VIP会员可免金币下载! 充值积分充值会员更多说明»

讨论这个素材(0)回答他人问题或分享使用心得奖励金币

〒_〒 居然一个评论都没有……

表情  文明上网,理性发言!