当前位置: > Linux服务器 > apache >

检测apache是否支持htaccess文件

时间:2014-12-24 15:11来源:linux.it.net.cn 作者:IT
一:检测 apache是否开启mod_rewrite
通过php提供的phpinfo()函数查看环境配置,在"apache2handler —> Loaded Modules"里看是否有"mod_rewrite"模块,如没开启则在apache配置文件httpd.conf 中找到"#LoadModule rewrite_module modules/mod_rewrite.so"去掉前面的"#"号,重启apache即可。
 
二:检测apache是否支持 ".htaccess"
如测试中不支持".htaccess",那在apache配置文件httpd.conf 中找到""与""内的"AllowOverride None"改为"AllowOverride All",重启apache即可。
 
三:创建.htaccess 文件
创建.htaccess 文件方法:新建文本文档,名字为"htaccess.txt",再打开"htaccess.txt"另存为,此时注意,名称改为 "".htaccess""保存即可。
 
第四:测试伪静态实例
.htaccess文件中输入:
RewriteEngine on 
RewriteRule ([a-zA-Z])-([0-9])-([0-9])\.html$ index.php?action=&id=&page= 
新建index.php文件并输入: 


 
(责任编辑:IT)
------分隔线----------------------------