一、什麼是php的路由機制
1、路由機制就是把某一個特定形式的URL結構中提煉出來系統對應的參數。舉個例子,如:http://main.test.com/article/1 其中:/article/1 -> ?_m=article&id=1。
2、然後將擁有對應參數的URL轉換成特定形式的URL結構,是上面的過程的逆向過程。
二、PHP的URL路由方式
總體來說就是:獲取路徑信息->處理路徑信息
URL路由方式:
第一種是通過url參數進行映射的方式,一般是兩個參數,分別代表控制器類和方法比如index.php?c=index&m=index映射到的是index控制器的index方法。
第二種,是通過url-rewrite的方式,這樣的好處是可以實現對非php結尾的其他後綴進行映射,當然通過rewrite也可以實現第一種方式,不過純使用rewrite的也比較常見,一般需要配置apache或者nginx的
rewrite規則
復制代碼 代碼如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
第三種,就是通過pathinfo的方式,所謂的pathinfo,就是形如這樣的url。xxx.com/index.php/c/index/aa/cc,apache在處理這個url的時候會把index.php後面的部分輸入到環境變量$_SERVER['PATH_INFO'],它等於/c/index/aa/cc。然後我們的路由器再通過解析這個串進行分析就可以了,後面的部分放入到參數什麼地方的,就依據各個框架不同而不同了。
三、 一個簡單的PHP路由實現
3.1 修改htaccess文件
編寫服務器apache或IIS自帶的rewrite文件,將URL結構導入指定文件比如:index.php。
開啟rewrite:htaccess文件是Apache服務器中的一個配置文件,它負責相關目錄下的網頁配置。啟用.htaccess,需要修改apache/conf/httpd.conf,啟用AllowOverride,並可以用AllowOverride限制特定命令的使用。
復制代碼 代碼如下:
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
改為
復制代碼 代碼如下:
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
然後我寫了這樣的rewrite:
復制代碼 代碼如下:
RewriteEngine on #rewriteengine為重寫引擎開關on為開啟off為關閉
#RewriteCond $1 !^(index.php\.php|images|robots\.txt)
RewriteRule ([a-zA-Z]{1,})-([0-9]{1,}).html$ sharexie/test.php?action=$1&id=$2
#([a-zA-Z]{1,})-([0-9]{1,}).html$是規則,sharexie/test.php?action=$1&id=$2是要替換的格式,$1代表第一個括號匹配的值,$2代表第二個。
上面的代碼就是將URL結構導入sharexie/test.php中。把這些保存為.htaccess文件放在網站的根目錄就行了。
test.php
復制代碼 代碼如下:
<?php
echo '你的Action是:' . $_GET['action'];
echo '<br/>';
echo '你的ID是:' . $_GET['id'];
?>
好了,我們現在在浏覽器中輸入:
127.0.0.1/view-12.html
輸出的是:
你的Action是:view
你的ID是:12
1、講解一下RewriteRule:
RewriteRule是重寫規則,支持正則表達式的,上面的([0-9]{1,})是指由數字組成的,$是結束標志,說明是以數字結束!
2、RewriteRule配置參數
1) R 強制外部重定向
2) F 禁用URL,返回403HTTP狀態碼。
3) G 強制URL為GONE,返回410HTTP狀態碼。
4) P 強制使用代理轉發。
5) L 表明當前規則是最後一條規則,停止分析以後規則的重寫。
6) N 重新從第一條規則開始運行重寫過程。
7) C 與下一條規則關聯8) T=MIME-type(force MIME type) 強制MIME類型
9) NS 只用於不是內部子請求
10) NC 不區分大小寫
11) QSA 追加請求字符串
12) NE 不在輸出轉義特殊字符 \%3d$1 等價於 =$1
舉例:
1、將xianglc將定到 index.php?c=myuser&m=itime&domain=xianglc
復制代碼 代碼如下:
RewriteRule ^([a-zA-Z0-9]){6,20}/?$ index.php?c=myuser&m=itime&domain=$0 [L]
2、#RewriteRule ^/index.html$ /1.php [L]
復制代碼 代碼如下:
RewriteRule ^/index-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?)$ $9&a=$1&b=$2&c=$3&d=$4&e=$5&f=$6&g=$7&h=$8 [C,NC]
RewriteRule ^(.*?)-(.*?)-(.*?)-(.*?)-(.*?)-(.*?).html(.*?)$ /1.php?$7&i=$1&j=$2&k=$3&l=$4&m=$5&n=$6 [QSA,L,NC]
3.2 一個路由解析器,用來解析規則,匹配和轉換URL。
先將所有的鏈接轉到index.php中,在index.php中進行路由分發,按照類和方法分配到相應的類文件中的函數上去。用$_SERVER['REQUEST_URI']取出URL中的www.xx.com/後面的部分,按照相關規則分別區分為class和mothod以及參數key=>value的值。最後include該類文件,執行其中的函數。實例如下:
復制代碼 代碼如下:
<?php
error_reporting(0);
date_default_timezone_set("Asia/Shanghai");
$_DocumentPath = $_SERVER['DOCUMENT_ROOT'];
$_RequestUri = $_SERVER['REQUEST_URI'];
$_UrlPath = $_RequestUri;
$_FilePath = __FILE__;
$_AppPath = str_replace($_DocumentPath, '', $_FilePath); //==>\router\index.php
$_AppPathArr = explode(DIRECTORY_SEPARATOR, $_AppPath);
for ($i = 0; $i < count($_AppPathArr); $i++) {
$p = $_AppPathArr[$i];
if ($p) {
$_UrlPath = preg_replace('/^\/'.$p.'\//', '/', $_UrlPath, 1);
}
}
$_UrlPath = preg_replace('/^\//', '', $_UrlPath, 1);
$_AppPathArr = explode("/", $_UrlPath);
$_AppPathArr_Count = count($_AppPathArr);
$arr_url = array(
'controller' => 'sharexie/test',
'method' => 'index',
'parms' => array()
);
$arr_url['controller'] = $_AppPathArr[0];
$arr_url['method'] = $_AppPathArr[1];
if ($_AppPathArr_Count > 2 and $_AppPathArr_Count % 2 != 0) {
die('參數錯誤');
} else {
for ($i = 2; $i < $_AppPathArr_Count; $i += 2) {
$arr_temp_hash = array(strtolower($_AppPathArr[$i])=>$_AppPathArr[$i + 1]);
$arr_url['parms'] = array_merge($arr_url['parms'], $arr_temp_hash);
}
}
$module_name = $arr_url['controller'];
$module_file = $module_name.'.class.php';
$method_name = $arr_url['method'];
if (file_exists($module_file)) {
include $module_file;
$obj_module = new $module_name();
if (!method_exists($obj_module, $method_name)) {
die("要調用的方法不存在");
} else {
if (is_callable(array($obj_module, $method_name))) {
$obj_module -> $method_name($module_name, $arr_url['parms']);
$obj_module -> printResult();
}
}
} else {
die("定義的模塊不存在");
}
?>