Yii2 基本版學習筆記

2021-08-22 08:19:18 字數 916 閱讀 9775

url 部分

-pathinfo設定

框架預設路由 www.aa.com/index.php?r=site/index

config/web.php

'urlmanager'

=> [

'enableprettyurl'

=>

true,//預設是false,設定為true時,才是pathinfo格式路由,但是帶index.php入口檔案,如果需要隱藏需要配合.htaccess檔案

'showscriptname'

=>

false,

'rules'

=> [

],],

public/目錄下,.htaccess 檔案

options

+followsymlinks

indexignore */*

rewriteengine

on# if a directory or a file exists, use it directly

rewritecond

% !-f

rewritecond

% !-d

# otherwise forward it to index.php

rewriterule

. index.php

設定成功後的路由:www.aa.com/site/index

解決: 在advanced目錄下有個 init.bat 檔案 雙擊執行,會出現乙個dos視窗 輸入 0(開發模式) 或 1(產品模式) 按回車 再輸入 yes 回車 這樣就能生成入口檔案了.

YII2 學習筆記

2 yii 所有一切都是 components 3 service locator和di 是yii 的核心 4 配置檔案中的 commponts 配置項為類的屬性鍵值對,特殊配置項 on as 開頭的,on 開頭為事件,as 開頭是定義類的行為。behaive 5 yii 有一些預設的 compon...

YII2學習筆記 20150724 1

一 設定yii專案金鑰 檔案在於yii config web.php config id basic basepath dirname dir bootstrap log components request cookievalidationkey 使用者所填金鑰 二 gii快速生成 1.配置gii...

YII2 學習筆記 RBAC

1 配置使用者 model 實現介面 yii web identityinte ce 2 配置檔案 components authmanager class yii rbac dbmanager user 指定使用者模組的驗證類 identityclass api models members 這裡...