国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

首頁 > php框架 > YII > 正文

yii框架如何配置路由

王林
發(fā)布: 2020-02-18 10:47:51
原創(chuàng)
3324人瀏覽過

yii框架如何配置路由

首先要在服務器配置(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>
登錄后復制

(推薦教程:yii框架

在目錄下加入服務器配置文件.htaccess

RewriteEngine on

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

#重寫規(guī)則
#如果是一個目錄或者文件,就訪問目錄或者文件
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后綴],
登錄后復制

更多編程相關內(nèi)容,請關注php中文網(wǎng)編程教程欄目!

以上就是yii框架如何配置路由的詳細內(nèi)容,更多請關注php中文網(wǎng)其它相關文章!

路由優(yōu)化大師
路由優(yōu)化大師

路由優(yōu)化大師是一款及簡單的路由器設置管理軟件,其主要功能是一鍵設置優(yōu)化路由、屏廣告、防蹭網(wǎng)、路由器全面檢測及高級設置等,有需要的小伙伴快來保存下載體驗吧!

下載
來源:php中文網(wǎng)
本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn
最新問題
開源免費商場系統(tǒng)廣告
最新下載
更多>
網(wǎng)站特效
網(wǎng)站源碼
網(wǎng)站素材
前端模板
關于我們 免責申明 意見反饋 講師合作 廣告合作 最新更新
php中文網(wǎng):公益在線php培訓,幫助PHP學習者快速成長!
關注服務號 技術(shù)交流群
PHP中文網(wǎng)訂閱號
每天精選資源文章推送
PHP中文網(wǎng)APP
隨時隨地碎片化學習
PHP中文網(wǎng)抖音號
發(fā)現(xiàn)有趣的

Copyright 2014-2025 http://www.miracleart.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號