-
-
//將url轉換成靜態url
- function url_rewrite($file,$params = array (),$html = "" ,$rewrite = true)
- {
- if ($rewrite) { //開發階段是不要rewrite,所在開發的時候,把$rewrite = false
- $url = ($file == 'index ') ? '' : '/' . $file;
- if (!emptyempty ($params) && is_array($params)) $url .= '/' . implode('/', $params);
- if (!emptyempty ($html)) $url .= '.' . $html;
- } else {
- $url = ($file == 'index') ? '/' : '/ ' . $file;
- if (substr($url, -4) != '.php' && $file != 'index') $url .= '.php';
- if (!emptyempty ( $params) && is_array($params)) $url .= '?' . http_build_query($params);
- }
-
- return $url;
- }
-
- echo_rewrite ('test.php',array('class'=>"User",'act'=>'check','name'=>'tank'));
- //$rewrite = false的情況下,顯示如下/test.php?class=User&act=check&name=tank
-
- echo url_rewrite('test.php', array ('class'=>"User",'act'=>'check', 'name'=>'tank'));
- //$rewrite = true的情況下,顯示如下/test.php/User/check/tank
-
- echo url_rewrite('test', array ('class'=>"User",'act'=>'check','name'=>'tank'));
- //$rewrite = true的情況下,顯示如下/test/User/ check/tank
-
- echo url_rewrite('test', array ('class'=>"User",'act'=>'check','name'=>'tank'),'html') ;
- //$rewrite = true的情況下,顯示如下/test/User/check/tank.html
- ?>
- 'check','name'=>'tank'));?>">test
-
複製程式碼
上面簡單的寫了一個方法,把動態url轉換成靜態的url,頁面中會產生連結如下:
到這兒如果直接點擊的話,肯定會報404錯誤的,因為根不可能找到tank這個目錄的。難點也在這兒,所以我們要把找不到的目錄和檔案指定一個php檔案。這個要利用到apache,nginx,或是htaccess等。
三,指定一個統一入口
-
- RewriteCond %{REQUEST_FILENAME} !-f //找不到檔案
- RewriteCond %{REQUEST_FENAME} !-dILENAME}
- RewriteRule . /test3/index.php [L]
複製程式碼
不管你是以.htaccess的方式來實現,還是寫在apache等的設定檔中,都是可以的。上面三句話是什麼意思呢,如果找不到目錄轉到index.php文件,如果找不到文件,也轉到index.php。
這麼做了,當我們造訪http://localhost/test3/test.php/User/check/tank時候,就會轉到index.php來,既然知道到那個php檔案了,那就好辦了。
以下內容都是以http://localhost/test3/test.php/User/check/tank這種重寫的方式來操作的,其他方式也都差不多。
四,index.php文件
-
-
$filename = $_SERVER['REQUEST_URI']; //請求的url
-
- /**請求的url,"/test3/test.php/User/check/tank"
- * test.php 要去的php檔案
- * User 是class名稱
- * check 是class中的方法名稱
- * tank 是要傳到check的參數*/
-
- preg_match("/(w+.php)/",$filename,$match); //找php檔案名稱
-
- $array = explode('/', $filename); //將靜態url進行分割
-
- $key = array_keys($array,$match[0]); //得到檔案所對應的下標Array ( [0] => 2 )
- $file_array = array_slice($array,0,$key[0]+1); //Array ( [0] => [1] => test3 [2] => test.php )
- $ param_array = array_slice($array,$key[0]+1); //Array ( [0] => User [1] => check [2] => tank )
-
- $file_path = implode( '/',$file_array);
-
- if($array[$key[0]] != "index.php"){
- include_once($array[$key[0]]); //包函請求url中的php檔,這裡是test.php
- }
-
- if(class_exists($param_array[0])){ //判斷一下test.php這個檔案有沒有User這個class
-
- $obj = new $param_array[0];
- if(method_exists($obj,$param_array[1])){ //判斷User這個class中有沒有check這個方法
- $obj->$param_array[1]($param_array[2]); //呼叫這個方法,結果是(我的名子叫tank)
- }
- }
- ? >
複製程式碼
五,test.php文件
-
-
class User {
- public function check($name){
- echo "我的名子叫". $name;
- }
- }
- ?>
-
複製程式碼
到這兒,當我們造訪http://localhost /test3/test.php/User/check/tank時。
結果如下:我的名子叫tank,而且網址列仍保持靜態。
|