至于为什么要开启伪静态,这个我就不多介绍了,现在介绍下PHPWIND的伪静态的开通方法,老鸟们就可以走开了,嘿嘿~配置这个和自己使用的服务器有关系,我们需要从不同的服务器来进行分析和设置,废话少说,现在开始:
1、如果是使用的IIS服务器,可以建httpd.ini文件,并放到根目录:文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html
文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule ^(.*)-htm-(.*)$ $1\.php\?$2
RewriteRule ^(.*)/u/([0-9]+)$ $1/u\.php\?uid=$2
RewriteRule ^(.*)/simple/([a-z0-9_]+.html)$ $1/simple/index.php?$2
文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html
2、如果是 Apache可以将 .htaccess 设置为文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1\.php\?$2
RewriteRule ^(.*)/simple/([a-z0-9_]+.html)$ $1/simple/index.php?$2
</IfModule>
文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html
很简单,开始行动吧~~~文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html
成功实例:http://huodong.info文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html 文章源自陈学虎-https://chenxuehu.com/article/2012/03/691.html
评论