欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php url伪静态化的实现方法详解

程序员文章站 2022-05-01 07:50:31
...
  1. //将url转换成静态url

  2. function url_rewrite($file, $params = array (), $html = "", $rewrite = true) {
  3. if ($rewrite) { //开发阶段是不要rewrite,所在开发的时候,把$rewrite = false
  4. $url = ($file == 'index') ? '' : '/' . $file;
  5. if (! empty ( $params ) && is_array ( $params )) {
  6. $url .= '/' . implode ( '/', array_slice($params, 0 , 2));
  7. $param = array_slice($params, 2);
  8. foreach($param as $key => $value){
  9. $url .= '/' . $key . '/' . urlencode ( $value );
  10. }
  11. }
  12. if (! empty ( $html )) {
  13. $url .= '.' . $html;
  14. }
  15. } else {
  16. $url = ($file == 'index') ? '/' : '/' . $file;
  17. if (substr ( $url, - 4 ) != '.php' && $file != 'index') {
  18. $url .= '.php';
  19. }
  20. if (! empty ( $params ) && is_array ( $params )) {
  21. $url .= '?' . http_build_query ( $params );
  22. }
  23. }
  24. return $url;
  25. }
  26. echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank','page'=>5 ) );echo "
    ";
  27. //$rewrite = false的情况下,显示如下/test.php?class=User&act=check&name=tank
  28. echo url_rewrite ( 'test.php', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ) );echo "
    ";

  29. //$rewrite = true的情况下,显示如下/test.php/User/check/tank
  30. echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ) );echo "
    ";
  31. //$rewrite = true的情况下,显示如下/test/User/check/tank
  32. echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ), 'html' );echo "
    ";

  33. //$rewrite = true的情况下,显示如下/test/User/check/tank.html
  34. ?>
复制代码

"User",'act'=>'check','name'=>'tank'));?>">test

以上把动态url转换成静态的url,页面中会产生链接如下: test 此时如果直接点击的话,肯定会报404错误的,因为根不可能找到tank这个目录的。 需要要把找不到的目录和文件指定一个php文件。这个需要用到apache,nginx,或htaccess等。

三,指定一个统一入口

  1. RewriteCond %{REQUEST_FILENAME} !-f //找不到文件
  2. RewriteCond %{REQUEST_FILENAME} !-d //打不到目录
  3. 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文件

  1. $filename = $_SERVER['REQUEST_URI']; //请求的url
  2. /**请求的url,"/test3/test.php/User/check/tank"
  3. * test.php 要去的php文件
  4. * User 是class名
  5. * check 是class中的方法名
  6. * tank 是要传到check的参数
  7. * by bbs.it-home.org
  8. */
  9. preg_match("/(\w+\.php)/",$filename,$match); //查找php文件名
  10. $array = explode('/',$filename); //将静态url进行分割
  11. $key = array_keys($array,$match[0]); //得到文件所对应的下标Array ( [0] => 2 )
  12. $file_array = array_slice($array,0,$key[0]+1); //Array ( [0] => [1] => test3 [2] => test.php )
  13. $param_array = array_slice($array,$key[0]+1); //Array ( [0] => User [1] => check [2] => tank )
  14. $file_path = implode('/',$file_array);
  15. if($array[$key[0]] != "index.php"){
  16. include_once($array[$key[0]]); //包函请求url中的php文件,在这里是test.php
  17. }
  18. if(class_exists($param_array[0])){ //判断一下test.php这个文件中有没有User这个class
  19. $obj = new $param_array[0];
  20. if(method_exists($obj,$param_array[1])){ //判断一下User这个class中有有没有check这个方法
  21. $obj->$param_array[1]($param_array[3]); //调用这个方法,结果是(我的名子叫tank)
  22. }
  23. }
  24. ?>
复制代码

五,test.php文件

  1. class User {
  2. public function check($name){
  3. echo "我的名子叫".$name;
  4. }
  5. }
  6. ?>
复制代码

至此,当访问http://localhost/test3/test.php/User/check/tank时,就不会报错了。