-
-
//url을 정적 URL로 변환 - function url_rewrite($file, $params = array ( ), $html = "", $rewrite = true) {
-
- if ($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 {
- $file == 'index') ? '/'
-
- if (substr ( $url, - 4 ) != '.php' && $file != 'index') {
- $url .= '.php'
- }
-
- if ( ! 비어 있음( $params ) && is_array( $params )) {
- $url .= '?' . http_build_query( $params )
- }
- 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
- ?>
-
-
-
코드 복사
"사용자",'act '=>'확인','이름'=>'탱크'));?>">테스트
위에서는 동적 URL을 정적 URL로 변환하고 페이지에 다음과 같이 링크가 생성됩니다.
시험
이때 직접 클릭하면 탱크 디렉터리를 찾을 수 없기 때문에 반드시 404 오류가 발생합니다.
찾을 수 없는 디렉터리와 파일에 대해서는 PHP 파일을 지정해야 합니다. 이를 위해서는 apache, nginx 또는 htaccess 등을 사용해야 합니다.
셋, 통일된 출입구를 지정하라
RewriteCond %{REQUEST_FILENAME} !-f //파일을 찾을 수 없습니다- RewriteCond %{REQUEST_FILENAME} !-d //디렉토리를 찾을 수 없습니다
- 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는 클래스 이름
- * check는 메소드 이름 클래스
- * 탱크는 검사에 전달되는 매개변수입니다
- * by bbs.it-home.org
- */
-
- preg_match("/(w .php)/",$filename,$match); //php 파일 이름 찾기
-
- $array =explore('/' , $filename); //정적 URL 분할
-
- $key = array_keys($array,$match[0]) //파일에 해당하는 첨자 배열 가져오기([0] => 2)
- $file_array = array_slice($array,0,$key[0] 1) //배열 ( [0] => [1] => test3 [2] => test.php )
- $param_array = array_slice($array,$key[0] 1); //배열 ( [0] => 사용자 [1] => 확인 [2] => 탱크 )
-
- $ 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])){ //테스트가 있는지 판단하세요. .php 파일에 User 클래스가 있나요?
-
- $obj = new $param_array[0]
- if(method_exists($obj,$param_array[1])){ //User 클래스가 있는지 판단하세요. 클래스에 check 메소드가 있나요?
- $obj->$param_array[1]($param_array[3]) //이 메소드를 호출하면 결과는 다음과 같습니다.
- }
- }
- ?>
코드 복사
다섯, test.php 파일
-
- class User {
- public function check($name){
- echo "My name is" .$ name;
- }
- }
- ?>
코드 복사
이때 http://localhost/test3/에 접속합니다. test.php/User/check/tank에서는 오류가 보고되지 않습니다.
|