原生php开发 url,php下实现伪 url 的超简单方法[转]

该博客介绍了如何将查询字符串转换为友好的URL路径,通过PHP实现动态路由,加载不同的模块并设置GET变量。例如,通过URL www.example.com/?forum/topic/20 可以加载forum.php模块并设置_QUERY['topic']为20。该方法适用于构建可扩展的Web应用。
摘要由CSDN通过智能技术生成

就像我的日志中的地址路径一样,让 index.php?action=one&do=two

变成: ?index/action/one/do/two

index.php

--------------

// PARSING QUERY STRING

$QS=explode("&",$_SERVER['QUERY_STRING']);

$QS=explode('/',$QS[0]);

// IF Modul is Undefined set it to index

if (!$QS[0]) $MODUL='index';

else $MODUL=strtolower($QS[0]);

// WE can make a Variable $_QUERY

// for alternative _GET

for ($i=1;$i

{

$_QUERY[$NVAR]=$NVAR=$QS[$i];

$$NVAR=$QS[$i+1];

}

// Check the Modul is exists?

if (!file_exists("modul_directory/{ $MODUL }.php"))

$MODUL="index";

#### THIS IS EXAMPLE TO IMPLEMENTATION THE SCRIPT

// Load The Template

include("template.php");

// Load The Module

include("modul_directory/{ $MODUL }.php");

// Load The Footer

include("footer.php");

?>

we can access the modul in URL like this:

=================================

www.example.com/?forum/topic/20

- it mean load the modul forum.php, and set the _QUERY['topic']=20

www.foo.com/?voting/id/54/type/piechart&choice=2

- it mean load the modul voting.php, and set the _QUERY['id']=54 and _QUERY['type']='piechart' and set _GET['choice']=2

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值