手机
当前位置:查字典教程网 >编程开发 >php教程 >php 伪静态之IIS篇
php 伪静态之IIS篇
摘要:有的win主机IIS不支持.htaccess文件,我在这里指的不是本地在本地的话用apmserv服务器可以用.htaccess文件,用apm...

有的win主机IIS不支持 .htaccess 文件, 我在这里指的不是本地 在本地的话用apmserv服务器可以用.htaccess 文件,用apmserv服务器环境配置伪静态可以看 php 伪静态 (url rewrite mod_rewrite 重写) 这篇文章,讲的很详细.

这里我们主要讲解httpd.ini 废话不说直接看效果~

例: www.jb51.net/index.php

我们想让他用 www.jb51.net/index.html 来直接访问

www.jb51.net/newxx.php?=10 [newxx.php 是新闻的详细页面]

我们把他伪静态成为 www.jb51.net/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主机的空间商基本都支持的!

【php 伪静态之IIS篇】相关文章:

PHP curl使用实例

1.PHP简介

用php发送带附件的Email

模拟OICQ的实现思路和核心程序(一)

PHP实现的购物车类实例

PHP SPL标准库之接口(Interface)详解

用php来检测proxy

php页面缓存ob系列函数介绍

php跨服务器访问方法小结

php使用标签替换的方式生成静态页面

精品推荐
分类导航