Home > Backend Development > PHP Tutorial > php如何实现这样的需求,关于url的

php如何实现这样的需求,关于url的

WBOY
Release: 2016-06-23 14:11:46
Original
909 people have browsed it

例如 有几个栏目

PHP编程基础  PHP大牛  PHP大神   

list/phpjichu.html     list/phpdaniu.html    list/phpdashen.html 

对应链接 

如何控制跳转链接通过字母显示

如何对应链接与程序调用的数据

超级菜鸟求帮助


回复讨论(解决方案)

求帮助

array('phpjichu'=>array('name'=>'PHP编程基础','url'=>'list/phpjichu.html'),'phpdaniu'=>array('name'=>'PHP大牛','url'=>'list/phpdaniu.html'),'phpdashen'=>array('name'=>'PHP大神 ','url'=>'list/phpdashen.html'))

这样写一个数组,应该明白了吧

表示看不懂你的描述

表示看不懂你的描述

大牛,或者这样说
我不想用urlwrite来做伪静态   伪静态是把那些.php 和参数什么的  变为友好的链接,例如.html  不带参数的那种链接 

想直接就控制php程序的url规范  

怎么弄  php新手   不知道楼上那位大牛是不是这样的  能否给个例子跑跑

array('phpjichu'=>array('name'=>'PHP编程基础','url'=>'list/phpjichu.html'),'phpdaniu'=>array('name'=>'PHP大牛','url'=>'list/phpdaniu.html'),'phpdashen'=>array('name'=>'PHP大神 ','url'=>'list/phpdashen.html'))

这样写一个数组,应该明白了吧

嗯  对应关系 明白  
 
我不想用urlwrite来做伪静态   伪静态是把那些.php 和参数什么的  变为友好的链接,例如.html  不带参数的那种链接 

想直接就控制php程序的url规范  
  能否给个例子跑跑

不用url rewrite 不能完美实现 list/phpxxxxx.html 这样的伪静态。

你硬是不用伪静态,又想实现这种效果,就只能生成相应的文件,让这个文件能用php解析,然后在文件内根据文件名 $_SERVER['SCRIPT_NAME'] 来获取你想要的参数。


array('phpjichu'=>array('name'=>'PHP编程基础','url'=>'list/phpjichu.html'),'phpdaniu'=>array('name'=>'PHP大牛','url'=>'list/phpdaniu.html'),'phpdashen'=>array('name'=>'PHP大神 ','url'=>'list/phpdashen.html'))

这样写一个数组,应该明白了吧

嗯  对应关系 明白  
 
我不想用urlwrite来做伪静态   伪静态是把那些.php 和参数什么的  变为友好的链接,例如.html  不带参数的那种链接 

想直接就控制php程序的url规范  
  能否给个例子跑跑
不想用伪静态,那你只有开启支持html运行php程序的,不过这样不安全

还有就是生成静态页的,不过这样就无法执行php代码的,不过可以借用JS做桥接来AJAX执行php

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template