首页  >  文章  >  后端开发  >  PHP开发入门-Apache开启伪静态详解

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

黄舟
黄舟原创
2017-03-23 09:53:461629浏览

环境:
系统 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 OnRewriteRule ^(.*)-htm-(.*)$ $1.php?$2

以上是PHP开发入门-Apache开启伪静态详解的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn