버전 5.30 이상에서만 사용할 수 있습니다. 이전 버전의 빠른 리디렉션 특성(별도의 클래스, 모두 정적 호출 사용)을 상속하고, 다른 모듈을 호출할 수 있는 매우 중요한 기능과 속성을 추가합니다. 또한 URL을 사용하면 모듈 간 또는 페이지 간 기능 공유가 단순화됩니다.
.htaccess 파일 작성 방법:
-
- #--------------- .htaccess 시작 -------------- -
- RewriteEngine 켜기
- RewriteRule !.(js|ico|gif|jpg|png|css|swf|htm|txt)$ index.php
- php_flag Magic_quotes_gpc 끄기
- php_flag Register_globals 끄기
- #--------------- .htaccess end ---------------
-
코드 복사
재작성 기능 도입: 사이트 루트 디렉터리의 index.php 끝에 다음 코드를 작성하면 재작성이 활성화됩니다. (정상 조건: 1. Apache의 재작성 구성이 성공하고 .htaccess 지원 활성화됨 .2. 사이트 루트 디렉터리에 .htaccess 파일이 설정됩니다. 3. index.php 앞부분에 class.rewrite.php 클래스 파일이 로드됩니다. 4. 페이지 모듈 파일의 위치 및 작성. 정확합니다):
코드는 다음과 같습니다:
-
- //......
- 다시 작성::__config(
- $config['path'] ,/*'http: //xxxxx/mysite/'URL 기본 위치*/
- $config['md_path'],/*'c:/phpsite/www/mysite/modules/'모듈 파일 물리적 디렉터리*/
- 배열(
- 'phpinfo'
- )
- );
- 다시 작성::__parse();
- //....
-
코드 복사
모듈 파일 작성 방법:
testPk.php
-
- class Rw_testPk extends Rewrite {
- //testpk 페이지에 액세스하는 한 이것이 선두 함수입니다. 이것은 확실히 실행될 것이며 이 페이지 또는 이 페이지의 전역 변수 내에서 함수 액세스 권한을 제어하는 데 사용될 수 있습니다
- public static function init(){
- //if (!definition('SITE_PASS')){
- echo self::$ linktag.'
';//self::$linktag는 자주 사용되는 페이지 파싱 위치 경로 값입니다.
- //}
- }
- //"http:// /bbs.it-home.org/testpk/"에 접속할 때
- public static function index(){
- echo 'test';
- }
- 하면 실행됩니다. //"http://bbs .it-home.org/testpk/blank"에 접속하면 "http://bbs.it-home.org/testpk/index/blank"로 실행되거나 쓰여집니다. 일반적으로 "index/ "는 생략 가능
- 공용 정적 함수 공백(){}
- }
- ?>
-
코드 복사
class.rewrite.php;
코드는 다음과 같습니다:
-
- class Rewrite{
- public static $debug = false;//디버깅 활성화 여부
- public static $time_pass = 0; //모듈 파일의 전체 실행 시간을 가져옵니다
- public static $version = 2.2;
- public static $pretag = 'Rw_';//모듈 파일 클래스의 이름 접두사
- public static $linktag = 'index'; //파싱 중인 링크를 표시하는 데 사용되는 페이지 링크 태그이며 다양한 메뉴 효과 및 링크 액세스 권한을 제어하는 데 사용할 수 있습니다.
- protected static $time_start = 0;
- protected static $time_end = 0;
- protected static $physical_path = '';//모듈 파일의 물리적 경로
- protected static $website_path = '';//모듈 파일의 사이트 경로입니다. 다음과 같은 사이트의 하위 디렉토리로 확장됩니다: http://bbs.it-home.org/site/mysite
- protected static $ob_contents = '';
- protected static $uid = 0;// http://bbs.it-home.org/423/ 등 개인 홈페이지 접속 방법에 따라 http://bbs.it-home.org/profile?uid=423
- //allowed에 접속합니다. $allow_sys_fun=array('phpinfo')와 같은 시스템 기능을 사용하면 http://bbs.it-home.org/phpinfo 또는 http://bbs.it-home일 때 시스템이 phpinfo 콘텐츠에 액세스하는 링크를 허용합니다. .org/...../phpinfo, phpinfo 함수가 직접 실행되며 phpinfo.php 모듈 파일이 필요하지 않습니다.
- private static $allow_sys_fun = array();
- private static function __get_microtime(){
- list($usec, $sec) =explore(" ",microtime());
- return ((float)$usec (float)$sec);
- }
- //디버깅 설정 재작성: :__debug(true);
- 공용 정적 함수 __debug($d = true){
- static::$debug = $d;
- }
- //구성 경로 및 허용 함수
- public 정적 함수 __config($website_path = '',$physical_path = '',$allow_sys_fun = array( )){
- self::$physical_path = $physical_path;
- self::$website_path = $website_path;
- self::$allow_sys_fun = $allow_sys_fun;
- }
- //디버그 함수
- 공개 정적 함수 __msg($str){
- if(static::$debug){
- echo " n
n".print_r($str,true)."n n";
- }
- }
- //시작 시간 구문 분석
- 공개 정적 함수 __start(){
- self::$time_start = self::__get_microtime();
- }
- //파싱 종료 시간
- 공개 정적 함수 __end($re = false){
- self::$time_end = self::__get_microtime();
- self::$time_pass = round((self ::$time_end - self::$time_start),6) * 1000;
- if($re){
- return self::$time_pass;
- }else{
- self::__msg( 'PASS_TIME: '.self::$time_pass.' ms');
- }
- }
- // test1.php 모듈 페이지('/test2/show')에서 Rwrite::__parseurl 실행과 같은 내부 교차 모듈 URL 구문 분석 호출 이 문장은 test2.php 모듈 페이지에서 show 메소드(클래스의 메소드)를 호출합니다. Rw_test2)
- 공용 정적 함수 __parseurl($url = '',$fun = '',$ data = NULL){
- if(!empty($url)&&!empty($fun)){
- $p = static::$physical_path;
- if(file_exists($p.$url) || file_exists($p.$url.'.php') ){
- $part = strtolower(basename( $p.$url , '.php' ));
- static::$linktag = $ part.'/'.$fun;
- $fname = static::$pretag.$part;
- if(class_exists($fname, false)){
- if(method_exists($fname,$fun )){
- return $fname::$fun($data);
- }
- }else {
- include( $p.$url );
- if( class_exists($fname, false) && method_exists($fname,$fun)){
- return $fname::$fun($data) ;
- }
- }
- }
- }
- }
- //코어 링크 구문 분석 함수 Rwrite::__parse()는 최상위 재작성 코어 방향 대상 인덱스에서 실행됩니다. .php, 이는 Rwrite 사용자 정의 재작성이 활성화되었음을 의미합니다.
- public static function __parse($Url = '') {
- self::__start();
- $p = static::$physical_path;
- $w = static::$website_path;
- $req_execute = false;
- $url_p = 비어 있음($Url) ? $_SERVER['REQUEST_URI'] : $Url;
- $local = 구문 분석($ w);
- $req =parse_url($url_p);
- $req_path = preg_replace('| [^w/.]|','',$req['path']);
- $ req_para = 비어 있음($Url) ? strstr($_SERVER['SERVER_NAME'],'.',true) : 'www';
- if(empty($Url) && substr_count($_SERVER['SERVER_NAME'], '.') == 2 && $req_para != 'www'){
- self::__goto( $req_para,preg_replace('|^'.$local['path'].'|',"", $req_path));
- 반환 ;
- }else{
- $req_path_arr = 비어 있음($ req_path)?array():preg_split("|[/] |",preg_replace('|^'.$ local['path'].'|',"",$req_path));
- $req_fun = array_pop($req_path_arr);
- if(substr($req_fun,0,2)=='__' ){
- $req_fun = substr($req_fun,2);
- }
- $req_path_rearr = array_filter($req_path_arr);
- self::__msg($req_path_rearr);
- $req_temp = implode('/',$req_path_rearr);
- $fname = $req_temp.'/'.$req_fun ;
- if(!empty($req_fun)&&in_array($req_fun,static::$allow_sys_fun)){
- $req_fun();
- }else{
- if(!empty($req_fun) &&file_exists($p.$fname.'.php') ){
- include( $p.$fname .'.php' );
- }else{
- $fname = 비어 있음($req_temp) ? 'index' : $req_temp;
- if(file_exists($p.$fname.'.php') ){
- include( $p.$fname.'.php' );
- }else{
- $fname = $req_temp.'/index';
- if(file_exists($p.$ fname.'.php')){
- 포함( $p.$fname.'.php' ) ;
- }else{
- //이것은 "프로필/"로 연결되는 "개인 홈페이지"에 대한 특별 링크입니다. 직접 수정할 수 있습니다.
- //예: www.xxx.com/12/는 www.xxx를 의미합니다. .com/profile/?uid=12 또는 www.xxx.com/profile?uid=12
- $uid = is_numeric($req_temp) ? $req_temp : strstr($req_temp, '/', true);
- $ufun = is_numeric($req_temp) ? '인덱스' : strstr($req_temp, '/');
- if(is_numeric($uid)){
- self::$uid = $uid;
- if(!isset($_GET['uid'])) $_GET['uid'] = $uid;
- $fname = 'profile/'.$ufun;
- if(file_exists($p . $fname.'.php')){
- include( $p.$fname.'.php' );
- }else{
- header("location:".$w);
- 종료();
- }
- }else if(file_exists($p.'index.php')){
- $fname = 'index';
- include( $p.'index.php ' );
- }else{
- header("location:".$w);
- exit();
- }
- }
- }
- }
- $ ev_fname = strrpos($fname,'/')===false ? $fname : substr($fname,strrpos($fname,'/') 1);
- $ev_fname = static::$pretag.$ ev_fname ;
- if( class_exists($ev_fname, false) && method_exists($ev_fname,$req_fun)){
- static::$linktag = $req_fun=='index' ? $fname .'/'.$req_fun;
- if($req_fun != 'init' && method_exists($ev_fname,'init')){
- $ev_fname::init();
- }
- $ev_fname::$req_fun();
- }else if( class_exists($ev_fname, false) && method_exists($ev_fname,'index') ){
- static::$linktag = $fname.'/ ' ;
- if(method_exists($ev_fname,'init')){
- $ev_fname::init();
- }
- $ev_fname::index();
- }else if ( $fname != 'index' && class_exists(static::$pretag.'index', false) && method_exists(static::$pretag.'index','index') ){
- $ev_fname = static: : $pretag.'index';
- static::$linktag = 'index/';
- if(method_exists($ev_fname,'init')){
- $ev_fname::init();
- }
- $ev_fname::index();
- }else{
- self::__msg('함수가 존재하지 않습니다!');
- }
- }
- }
- self::__end();
- }
- //다음과 같은 사용자 정의 링크를 구문 분석합니다(데이터베이스에 저장된 구문 분석 값 사용). 데이터베이스에서 태그를 지정하세요. 개인의 블로그를 가리키면 www.baidu.com/blog?uid=12 또는 www.baidu.com/blog?uname=xiaoming이 표시됩니다(데이터베이스 설계 방법에 따라 다름).
- 공개 정적 함수 __goto($ para = '',$path = ''){
- $w = static::$website_path;
- if(empty($para)){
- exit('알 수 없는 링크, 구문 분석 실패, 액세스할 수 없음 ');
- }
- if(class_exists('Parseurl')){
- $prs = Parseurl::selectone(array('tag','=',$para) );
- self ::__msg($prs);
- if(!empty($prs)){
- $parastr = $prs['tag'];
- $output = array() ;
- $_GET [$prs['idtag']] = $prs['id'];
- parse_str($prs['parastr'], $output);
- $_GET = array_merge($ _GET,$output);
- $path = $prs['type'].'/'.preg_replace('|^/'.$prs['type'].'|','',$path) ;
- self: :__msg($path);
- header('location:'.$w.$path.'?'.http_build_query($_GET));
- exit();
- }else{
- header("location:".$w);
- exit();
- }
- }else{
- header("location:".$w);
- exit();
- }
- }
- }
- ?>
-
코드 복사
|