php框架workerman伪静态改造详细说明
Posted 安晨末
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php框架workerman伪静态改造详细说明相关的知识,希望对你有一定的参考价值。
一、找到vendorworkermanworkermanWebServer.php 第176行,改为以下内容,增加对html扩展名文件不存在的判断:
if (in_array($workerman_file_extension,[‘php‘,‘html‘]) && !is_file($workerman_file)) { $workerman_file = "{$workerman_root_dir}/index.php"; $workerman_file_extension = ‘php‘; if (!is_file($workerman_file)) { $workerman_file= "{$workerman_root_dir}/index.html"; $workerman_file_extension = ‘html‘; } }
这样以后,只要访问扩展名为html的文件,且这个文件不存在,就会自动重定向到index.php,然后再在index.php进行判断就行
二、index.php改造,输出页面前,增加以下判断:
1 //重定向判断 2 $uri=$_SERVER[‘REQUEST_URI‘]; 3 $ext=strtolower(substr($uri,-4,4)); 4 if(is_cli()&&$ext==‘html‘){ 5 $_GET[‘_‘]=substr($uri,1,strlen($uri)-5); 6 }
我访问的地址是http://c.com/Users_login.html,即访问index.php?_=Users_login
三、根据$_GET[‘_‘],分割下划线,判断加载哪一个类和类的方法,就行了。比如:
1 $_GET[‘_‘]=isset($_GET[‘_‘])?$_GET[‘_‘]:strcode(‘Index_index‘); 2 $strs=strcode($_GET[‘_‘],‘DECODE‘); 3 if(!$strs)xdie(‘param error.‘); 4 $d=preg_split(‘/[.\_]/‘,$strs); 5 if(count($d)<2)xdie(‘error:param‘); 6 $class=$d[0].‘Action‘; 7 $action=$d[1];
再加载类并运行就行
以上是关于php框架workerman伪静态改造详细说明的主要内容,如果未能解决你的问题,请参考以下文章
PHP 伪静态规则写法RewriteRule-htaccess详细语法使用