-
-
//將url轉換成靜態url
- function url_rewrite($file, $params = array () , $html = "", $rewrite = true) {
-
- if ($rewrite) { //開發階段是不要rewrite,所在開發的時候,把$rewrite = false
- $url = ( $file == 'index') ? '' : '/' . $file;
- if (! empty ( $params ) && is_array ( $params )) {
- $url .= '/' . implode ( '/', array_slice($params, 0 , 2));
- $param = array_slice($params, 2);
- foreach($param as $key => $value){
- $ url .= '/' . $key . '/' . urlencode ( $value );
- }
- }
- if (! empty ( $html )) {
- $url .= '. ' . $html;
- }
- } else {
- $url = ($file == 'index') ? '/' : '/' . $file;
-
- if ( substr ( $url, - 4 ) != '.php' && $file != 'index') {
- $url .= '.php';
- }
-
- if (! empty ( $params ) && is_array ( $params )) {
- $url .= '?' . http_build_query ( $params );
- }
- }
- return $url;
- }
- }
- return $url; >
- echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank','page'=>5 ) );echo "
";
- //$rewrite = false的情況下,顯示如下/test.php?class=User&act=check&name=tank
echo url_rewrite ( 'test. php', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ) );echo " ";
- //$rewrite = true的情況下,顯示如下/test.php/User/check/tank
-
- echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ) );echo "
";
- //$rewrite = true的情況下,顯示如下/test/User/check/tank
- echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ), 'html' );echo "
";
- //$rewrite = true的情況下,顯示如下/test/User/check/tank.html
- ?>
複製程式碼
"User",'act'=>'check','name'=>'tank'));?>">test
以上把動態url轉換成靜態的url,頁面中會產生連結如下:
test
此時如果直接點擊的話,一定會報404錯誤的,因為根不可能找到tank這個目錄的。
需要要把找不到的目錄和檔案指定一個php檔案。這個需要用到apache,nginx,或htaccess等。
三,指定一個統一入口
-
-
- RewriteCond %{REQUEST_FILENAME} !-f //找不到檔案
- RewriteCond %{REQUEST_FENAME} !-dILENAME}
RewriteRule . /test3/index.php [L]
複製程式碼
代碼說明:
如果找不到目錄到index.php文件,如果找不到文件,也轉到index.php。
當訪問http://localhost/test3/test.php/User/check/tank時候,就會轉到index.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的參數
- * by bbs.it-home.org
- */
-
- 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[3]); //呼叫這個方法,結果是(我的名子叫tank)
- }
- }
- ? >
複製程式碼
五,test.php文件
-
-
class User {
- public function check($name){
- echo "我的名子叫". $name;
- }
- }
- ?>
複製程式碼
至此,當造訪http://localhost/test3/test. php/User/check/tank時,就不會報錯了。
|