PHP怎么实现伪静态?下面的是我在网上找的,就这一段代码就可以实现?这写在哪我不知道。。
if(@$path_info=$_SERVER["PATH_INFO"]){//正则匹配一下参数if(preg_match("/\/(\d+),(\d+),(\d+)\....
if(@$path_info =$_SERVER["PATH_INFO"]){
//正则匹配一下参数
if(preg_match("/\/(\d+),(\d+),(\d+)\.html/si",$path_info,$arr_path)){
$gid =intval($arr_path[1]); //取得值 1
$sid =intval($arr_path[2]); //取得值100
$softid =intval($arr_path[3]); //取得值8630
}else die("Path:Error!");
//相当于soft.php?gid=1&sid=100&softid=8630 展开
//正则匹配一下参数
if(preg_match("/\/(\d+),(\d+),(\d+)\.html/si",$path_info,$arr_path)){
$gid =intval($arr_path[1]); //取得值 1
$sid =intval($arr_path[2]); //取得值100
$softid =intval($arr_path[3]); //取得值8630
}else die("Path:Error!");
//相当于soft.php?gid=1&sid=100&softid=8630 展开
2个回答
展开全部
伪静态需要webservice 的支持,例如:apache 或 IIS,以下以APACHE为例。
要点一:httpd.conf 配置中,LoadModule rewrite_module modules/mod_rewrite.so
要点二:网站目录设置
<Directory />
Options FollowSymLinks
AllowOverride All #此处设为All
Order deny,allow
Deny from all
</Directory>
要点三:
在网站目录(不知道哪个目录,就在根目录下)新建一个.htaccess文件。建不了这个文件?PHP写个代码就生成这个文件了<?php file_put_contents(realpath("/.htaccess"), "");?>。
要点三:
伪静态规则写法?其实里面都是写正则表达式,没学好,用个第三方的生成器,百度搜索关键词“.htaccess 在线生成器”
--葛皖松~~
要点一:httpd.conf 配置中,LoadModule rewrite_module modules/mod_rewrite.so
要点二:网站目录设置
<Directory />
Options FollowSymLinks
AllowOverride All #此处设为All
Order deny,allow
Deny from all
</Directory>
要点三:
在网站目录(不知道哪个目录,就在根目录下)新建一个.htaccess文件。建不了这个文件?PHP写个代码就生成这个文件了<?php file_put_contents(realpath("/.htaccess"), "");?>。
要点三:
伪静态规则写法?其实里面都是写正则表达式,没学好,用个第三方的生成器,百度搜索关键词“.htaccess 在线生成器”
--葛皖松~~
来自:求助得到的回答
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询