-
- #--------------- .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. class.rewrite.php 클래스 파일이 index.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 { - //이것이 선두 함수입니다. 이 페이지를 테스트하여 액세스하면 이 페이지 또는 이 페이지의 전역 변수 내에서 함수 액세스 권한을 제어하는 데 확실히 실행되고 사용될 수 있습니다.
- public static function init(){
- //if (!definition) ('SITE_PASS')){
- echo self::$linktag.'
';//self::$linktag는 자주 사용되는 페이지 파싱 위치 경로 값입니다.
- / /}
- }
//"http://localhost/testpk/"에 접속하면
- public static function index(){
- 가 실행됩니다. echo 'test';
- } p>
//"http://localhost/testpk/blank"에 접근하면 "http://localhost"로 실행되거나 쓰여집니다. /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_';//모듈의 이름 접두어 file class
public static $linktag = 'index';//페이지 링크 태그는 어떤 링크가 구문 분석되는지 표시하는 데 사용되며 다양한 메뉴 효과 및 링크 액세스 권한을 제어하는 데 사용할 수 있습니다. /p>
-
protected static $time_start = 0;
- protected static $time_end = 0;
- protected static $physical_path = '';//모듈 파일의 물리적 경로
- protected static $website_path = ''; //사이트가 사이트의 하위 디렉터리로 확장될 수 있으므로 모듈 파일의 사이트 경로: http://localhost/site/mysite
- protected static $ob_contents = '';
- protected static $uid = 0 ;//http://localhost/423/ 등 개인 홈페이지 접속 방법에 따라 http://localhost/profile?uid=423
//$allow_sys_fun=array('phpinfo')와 같은 시스템 기능을 허용하면 시스템은 http://localhost/phpinfo 또는 http://localhost일 때 phpinfo 콘텐츠에 액세스할 수 있는 링크를 허용합니다. /...../phpinfo, phpinfo 함수가 직접 실행됩니다. phpinfo.php 모듈 파일이 필요하지 않습니다
- private static $allow_sys_fun = array();
개인 정적 함수 __get_microtime(){
- list($usec, $sec) =explore(" ",microtime());
- return((float)$usec(float)$sec);
- }
//디버깅 설정 재작성: :__debug(true);
- 공개 정적 함수 __debug($d = true){
- static::$debug = $d;
- }
// 구성 경로 및 허용 기능
- 공개 정적 함수 __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;
- }
- < ;p>//디버그 함수
- 공개 정적 함수 __msg($str) {
- if(static::$debug){
- echo "n
n".print_r($str,true) ."n n";
- }
- }
//시작 시간 구문 분석
- 공개 정적 함수 __start(){
- self: :$time_start = self::__get_microtime();
- } p>
//종료 시간 구문 분석
- 공개 정적 함수 __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');
- }
- }< ;/p>
//내부 교차 모듈 URL 구문 분석 test1.php 모듈 페이지에서 Rwrite::__parseurl('/test2/show') 실행과 같은 호출은 show 메소드( test2.php 모듈 페이지의 Rw_test2 클래스 메서드
- public static function __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(); 최상위 재작성 코어 대상 대상 index.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 =parse_url($w);
- $req =parse_url($url_p);
- $req_path = preg_replace(' |[^w/.\]|','',$req[ '경로']);
- $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));
- return ;
- }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')){
- include( $p.$fname.'.php' );
- }else{
//이 곳은 " 프로필로 연결되는 "개인 홈페이지"의 특별 링크입니다. /", 직접 수정할 수 있습니다
- //예: www.xxx.com/12/는 www.xxx.com/profile/?uid=12 또는 www.xxx.com/profile?uid=12<를 의미합니다. ; /p>
$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);
- exit();
- }
- }else if (file_exists($p.'index.php')){
- $fname = 'index';
- include( $p.'index.php' );
- }else{
- 헤더 ( "위치:".$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.'/' : $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();
- }< / p>
//다음은 사용자 정의 링크 분석입니다(데이터베이스에 저장된 분석 값 사용). 예: Xiaoming.baidu.com
- //데이터베이스의 Xiaoming 태그 개인의 블로그를 가리킵니다. 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();
- }
- }
- }
- ?>
-
코드 복사
|