Windows系统中配置Apache的伪静态
简单配置Apache的伪静态,只需要三个步骤:
第一步:打开 Apache 的配置文件 httpd.conf,找到#LoadModule rewrite_module modules/mod_rewrite
把前面的#号去掉,使之有效,改完后代码如下:
LoadModule rewrite_module modules/mod_rewrite
复制代码第二步:找到
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
把AllowOverride None改为AllowOverride All,使之支持.htaccess。
第三步:重启Apache服务器。
下面我们可以做个测试,来自我的apache教程,我写一个简单的.htaccess文件,代码如下: RewriteEngine on
RewriteRule ^(.*)$ index.php
复制代码以上重写的规则就是不管您输入WEB目录下的什么文件地址都会重写到index.php。具体重写规则可以参考一下"正则表达式"的相关文档,这里就不一一介绍了。RewriteEngine On
RewriteBase /
RewriteRule ^(.*)/tags/(?:(\?.*))*$ $1/tags\.php
RewriteRule ^(.*)/tags/(.*)\.html(?:(\?.*))*$ $1/tags\.php\?$2
用户系统信息:Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; TheWorld)