這篇文章將為大家詳細講解有關(guān)YII如何使用url組件美化管理,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
昌江黎族網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián),昌江黎族網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為昌江黎族近千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的昌江黎族做網(wǎng)站的公司定做!具體如下:
urlManager組件
yii的官方文檔對此的解釋如下:
urlSuffix 此規(guī)則使用的url后綴,默認使用CurlManger::urlSuffix,值為null。例如可以將此設(shè)置為.html,讓url看起來“像”是一個靜態(tài)頁面。
caseSensitive 是否大小寫敏感,默認使用CUrlManager::caseSensitive,值為null。
defaultParams 該規(guī)則使用的默認get參數(shù)。當(dāng)使用該規(guī)則來解析一個請求時,這個參數(shù)的值會被注入到$_GET參數(shù)中。
matchValue 當(dāng)創(chuàng)建一個URL時,GET參數(shù)是否匹配相應(yīng)的子模式。默認使用CurlManager::matchValue,值為null。
如果該屬性為 false,那么意味著當(dāng)路由和參數(shù)名匹配給定的規(guī)則時,將以此來創(chuàng)建一個URL。
如果該屬性為true,那么給定的參數(shù)值夜必須匹配相應(yīng)的參數(shù)子模式。
注意:將此屬性設(shè)置為true會降低性能。
我們使用一些例子來解釋網(wǎng)址工作規(guī)則。我們假設(shè)我們的規(guī)則包括如下三個:
array( 'posts'=>'post/list', 'post/<id:\d+>'=>'post/read', 'post/<year:\d{4}>/<title>'=>'post/read', )
調(diào)用$this->createUrl('post/list')生成/index.php/posts。第一個規(guī)則適用。
調(diào)用$this->createUrl('post/read',array('id'=>100))生成/index.php/post/100。第二個規(guī)則適用。
調(diào)用$this->createUrl('post/read',array('year'=>2008,'title'=>'a sample post'))生成/index.php/post/2008/a%20sample%20post。第三個規(guī)則適用。
調(diào)用$this->createUrl('post/read')產(chǎn)生/index.php/post/read。請注意,沒有規(guī)則適用。
總之,當(dāng)使用createUrl生成網(wǎng)址,路線和傳遞給該方法的GET參數(shù)被用來決定哪些網(wǎng)址規(guī)則適用。如果關(guān)聯(lián)規(guī)則中的每個參數(shù)可以在GET參數(shù)找到的,將被傳遞給createUrl ,如果路線的規(guī)則也匹配路線參數(shù),規(guī)則將用來生成網(wǎng)址。
如果GET參數(shù)傳遞到createUrl是以上所要求的一項規(guī)則,其他參數(shù)將出現(xiàn)在查詢字符串。例如,如果我們調(diào)用$this->createUrl('post/read',array('id'=>100,'year'=>2008)) ,我們將獲得/index.php/post/100?year=2008。為了使這些額外參數(shù)出現(xiàn)在路徑信息的一部分,我們應(yīng)該給規(guī)則附加/* 。 因此,該規(guī)則post/<id:\d+>/* ,我們可以獲取網(wǎng)址/index.php/post/100/year/2008 。
正如我們提到的,URL規(guī)則的其他用途是解析請求網(wǎng)址。當(dāng)然,這是URL生成的一個逆過程。例如, 當(dāng)用戶請求/index.php/post/100 ,上面例子的第二個規(guī)則將適用來解析路線post/read和GET參數(shù)array('id'=>100) (可通過$_GET獲得) 。
提示:此網(wǎng)址通過createurl方法所產(chǎn)生的是一個相對地址。為了得到一個絕對的url ,我們可以用前綴yii: :app()->hostInfo ,或調(diào)用createAbsoluteUrl 。
注:使用的URL規(guī)則將降低應(yīng)用的性能。這是因為當(dāng)解析請求的URL ,[ CUrlManager ]嘗試使用每個規(guī)則來匹配它,直到某個規(guī)則可以適用。因此,高流量網(wǎng)站應(yīng)用應(yīng)盡量減少其使用的URL規(guī)則。
test.com/vthot 想生成 test.com/vthot/
復(fù)制代碼 代碼如下:
'urlSuffix'=>'/',
要更改URL格式,我們應(yīng)該配置urlManager應(yīng)用元件,以便createUrl可以自動切換到新格式和應(yīng)用程序可以正確理解新的網(wǎng)址:
'urlManager'=>array( 'urlFormat'=>'path', 'showScriptName'=>false, 'urlSuffix'=>'.html', 'rules'=>array( 'posts'=>'post/list', 'post/<id:\d+>'=>array('post/show','urlSuffix'=>'.html'), 'post/<id:\d+>/<mid:\w+>'=>array('post/view','urlSuffix'=>'.xml'), ), ),
示例一
Rule代碼
復(fù)制代碼 代碼如下:
'posts'=>'post/list',
Action代碼
復(fù)制代碼 代碼如下:
echo $this->createAbsoluteUrl('post/list');
輸出
http://localhost/test/index.php/post
示例二
Rule代碼
復(fù)制代碼 代碼如下:
'post/<id:\d+>'=>array('post/show','urlSuffix'=>'.html'),
Action代碼
復(fù)制代碼 代碼如下:
echo $this->createAbsoluteUrl('post/show',array('id'=>998, 'name'=>'123'));
輸出
http://localhost/test/index.php/post/998.html?name=123
示例三
Rule代碼:
復(fù)制代碼 代碼如下:
'post/<id:\d+>/<mid:\w+>'=>array('post/view','urlSuffix'=>'.xml'),
Action代碼
復(fù)制代碼 代碼如下:
echo $this->createAbsoluteUrl('post/view',array('id'=>998, 'mid'=>'tody'));
輸出
http://localhost/test/index.php/post/998/tody.xml
示例四
Rule代碼
復(fù)制代碼 代碼如下:
'http://<user:\w+>.vt.com/<_c:(look|seek)>'=>array('<_c>/host','urlSuffix'=>'.me'),
Action代碼:
echo $this->createAbsoluteUrl('look/host',array('user'=>'boy','mid'=>'ny-01')); echo ''; echo $this->createAbsoluteUrl('looks/host',array('user'=>'boy','mid'=>'ny-01'));
輸出
http://boy.vt.com/look.me?mid=ny-01
http://localhost/test/index.php/looks/host/user/boy/mid/ny-01
1)controller/Update/id/23
public function actionUpdate(){ $id = Yii::app()->request->getQuery('id') ; 經(jīng)過處理的$_GET['id'] } //$id = Yii::app()->request->getPost('id'); 經(jīng)過處理的$_POST['id'] //$id = Yii::app()->request->getParam('id'); //CHttpRequest更多
2)public function actionUpdate($id) 這種不支持多主鍵,會檢查一下到底GET里面有沒有id,沒有id就直接不允許訪問
'sayhello/<name>' => 'post/hello', name是PostController actionHello($name)的參數(shù) 'post/<alias:[-a-z]+>' => 'post/view', domain/post/e文小寫 其中:前面的alias是PostController actionView($alias)的參數(shù) '(posts|archive)/<order:(DESC|ASC)>' => 'post/index', domain/posts/DESC或domain/posts/ASC '(posts|archive)' => 'post/index', domain/posts或domain/archive 'tos' => array('website/page', 'defaultParams' => array('alias' =>'terms_of_service')),
When the URL is /tos, pass terms_of_service as the alias parameter value.
隱藏 index.php
還有一點,我們可以做進一步清理我們的網(wǎng)址,即在URL中藏匿index.php 入口腳本。這就要求我們配置Web服務(wù)器,以及urlManager應(yīng)用程序元件。
1.add showScriptName=>false
2.add project/.htaccess
RewriteEngine on # if a directory or a file exists, use it directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # otherwise forward it to index.php RewriteRule . index.php
3.開啟rewrite
簡單的說,在main.php中簡單設(shè)置urlManager,然后講了3條規(guī)則,基本都覆蓋到了。最后是隱藏index.php,請記住.htaccess位于index.php同級目錄 ,而不是protected/目錄。其他就簡單了。
關(guān)于“YII如何使用url組件美化管理”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
網(wǎng)站標題:YII如何使用url組件美化管理-創(chuàng)新互聯(lián)
文章URL:http://jinyejixie.com/article18/dsicgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、搜索引擎優(yōu)化、電子商務(wù)、響應(yīng)式網(wǎng)站、品牌網(wǎng)站制作、網(wǎng)站改版
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)