程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> yii框架如何配置默認controller與action

yii框架如何配置默認controller與action

編輯:關於PHP編程

yii框架如何配置默認controller與action


本文介紹了yii框架中配置默認controller和action的方法,分享一個設置默認controller和action的例子,有學習yii的朋友可以參考下,個人感覺還不錯的。

在yii框架中,設置默認 controller 在/protected/config/main.php添加配置,具體代碼如下:

<?php
return array(
	'name'=>'Auto',
	'defaultController'=>'auto',
	......

上述配置了默認的 controller 為 AutoController.php

在yii框架中,設置默認 action 在剛才定義的 AutoController.php 中設置,具體代碼如下:

<?php
class AutoController extends CController{
    public $defaultAction='test';
    public function actionTest(){
        ...
    }
    ...

此時訪問 xxxx/index.php,會默認轉到 xxxx/index.php?r=auto/test,表示設置成功。

您可能感興趣的文章

  • 網頁緩存控制 Cache-control 常見的取值有private、no-cache、max-age、must-revalidate 介紹
  • yii框架目錄結構詳細分析說明
  • PHP解決網址URL編碼問題的函數urlencode()、urldecode()、rawurlencode()、rawurldecode()
  • yii框架緩存知識總結
  • 由於其配置信息(注冊表中的)不完整或已損壞,Windows 無法啟動這個硬件設備。 (代碼 19)解決辦法
  • php提示Call to undefined function curl_init() 錯誤的解決辦法
  • jquery操作cookie,jquery讀取cookie,jquery設置cookie,jquery刪除cookie
  • 如何去除codeIgniter開發的網站url裡面的index.php字符串

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved