您的位置:首页 > 运维架构 > Apache

PHP开发入门-Apache开启伪静态

2016-01-18 15:31 645 查看
环境:

系统 Windows

Apache 2.2

加载Rewrite模块:

在conf目录下httpd.conf中找到

LoadModule rewrite_module modules/mod_rewrite.so

这句,去掉前边的注释符号“#”,或添加这句。

允许在任何目录中使用“.htaccess”文件,将“AllowOverride”改成“All”(默认为“None”):

# 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 All

在conf\httpd.conf 最后一行添加

RewriteEngine On

RewriteRule ^(.*)-htm-(.*)$ $1.php?$2

参考:http://www.cnblogs.com/xiaochaohuashengmi/archive/2011/02/20/1958926.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: