php win主机下实现ISAPI_Rewrite伪静态
这里我们主要讲解httpd.ini 废话不说直接看效果~
例: www.del5.com/index.php
我们想让他用 www.del5.com/index.html 来直接访问
www.del5.com/newxx.php?=10 [newxx.php 是新闻的详细页面]
我们把他伪静态成为 www.del5.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主机的空间商基本都支持的!
上一篇: Python程序中设置HTTP代理
下一篇: php验证码 如何弄