php 伪静态之IIS篇
发布:smiling 来源: PHP粉丝网 添加日期:2021-01-31 18:39:04 浏览: 评论:0
上篇文章我们讲解了APACHE服务器下伪静态的实现,不过在国内还是IIS的服务器要多些,特别是个人站长,那么,我们再来学习下IIS下php伪静态的实现过程吧。
有的win主机IIS不支持 .htaccess 文件, 我在这里指的不是本地 在本地的话用apmserv服务器可以用.htaccess 文件,用apmserv服务器环境配置伪静态可以看 php 伪静态 (url rewrite mod_rewrite 重写) 这篇文章,讲的很详细.
这里我们主要讲解httpd.ini 废话不说直接看效果~
例: www.phpfensi.com/index.php
我们想让他用 www.phpfensi.com/index.html 来直接访问
www.phpfensi.com/newxx.php?=10 [newxx.php 是新闻的详细页面]
我们把他伪静态成为 www.phpfensi.com/new-10.html
实现过程如下:httpd.ini 的源文件
- [ISAPI_Rewrite]
- # 3600 = 1 hour
- # CacheClockRate 3600
- RepeatLimit 32
- # Protect httpd.ini and httpd.parse.errors files
- # from accessing through HTTP
- RewriteRule ^/httpd(?:\.ini|\.parse\.errors).* [F,I,O]
- RewriteRule /index.html /index.php
- RewriteRule /new-([0-9]+).html$ /newxx\.php\?uid=$1上面的例子可以看出 RewriteRule /index.html /index.php 是把index.php 转换为 index.html
- RewriteRule /new-([0-9]+).html$ /newxx\.php\?uid=$1 转换为 new-10{这个10为id=几的值}.html
很简单吧,这种伪静态一般 win主机的空间商基本都支持的!
Tags: php伪静态
相关文章
- ·php伪静态的写法,apache伪静态规则(2014-07-08)
- ·php伪静态之APACHE篇(2021-01-31)
- ·开启PHP的伪静态模式(2021-07-03)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)