apache的htaccess文件写法详细教程

我们经常是基于Virtualhost来搭建自己的网站,但是有时候每个网站的个性化设置,在apache(etc/httpd/conf/httpd.conf)中配置过于麻烦,因而我们会启用.htaccess文件来进行设置网站的各项参数。下面,结合实战和收集的资料,我总结了一篇.htaccess的教程,希望给大家带来方便。

 

认识.htaccess文件

.htaccess文件(或者”分布式配置文件”)提供了针对目录改变配置的方法, 即,在一个特定的文档目录中放置一个包含一个或多个指令的文件, 以作用于此目录及其所有子目录.作为用户,所能使用的命令受到限制.管理员可以通过Apache的AllowOverride指令来设置.
如何启用.htaccess文件

打开apache配置文件httpd.conf,然后查找AllowOverride属性,并设置为AllowOverride All,即可启用htaccess
htaccess 301跳转

301的跳转我在详解301永久重定向代码和永久链接优化中详细的提到过,大家可以看看。

案例1 从一个页面跳转到另一个页面(简单写法)

Redirect 301 ^old.html$ http://www.lanxinbase.com/new.html
实现old.html向new.html的永久跳转,但是后面的路径必须是完整的路径

 

案例2 URL重写

代码如下:
RewriteEngine on
RewriteRule ^old.html$ http://www.lanxinbase.com/new.html [r=301]
RewriteRule ^products/([^/]+)/([^/]+)/([^/]+) product.php?cat=$1&brand=$2&prod=$3
第一行 打开URL重写的引擎,必须有;

第二行 一个案例,实现old.html向new.html的永久跳转,并且在浏览器中直接显示新地址

第三方 一个案例,匹配表达式,能够将product.php?cat=turntables&brand=technics&prod=a2251的链接伪静态成url products/turntab(www.lanxinbase.com)les/technics/a2251

 

htaccess 404设置

代码如下:
<Files ~ “^.(htaccess|htpasswd)$”>
deny from all
</Files>
ErrorDocument 404 /404.html
order deny,allow
htaccess 503设置

代码如下:
<Files ~ “^.(htaccess|htpasswd)$”>
deny from all
</Files>
ErrorDocument 503 /503.html
order deny,allow
注:上述错误友好页面,需要在网站根目录建立404.html等静态文件。

 

htaccess 阻止部分ip访问

代码如下:
order allow,deny
deny from 202.114.44.1
allow from allOrde
htaccess apache服务器缓存(可节约服务器资源)

代码如下:
ExpiresActive on
ExpiresByType image/gif “access plus 1 month”
ExpiresByType image/png “access plus 1 month”
ExpiresByType image/jpg “access plus 1 month”
ExpiresByType image/jpeg “access plus 1 month”
htaccess 开启服务器Gzip压缩

代码如下:
<ifmodule mod_deflate.c>
AddOutputFilter DEFLATE html xml php js css
</ifmodule>
htaccess 在html页面运行php程序

代码如下:
AddHandler x-mapp-php6 .html .htm
htaccess 设置php脚本执行时间

php_value max_execution_time 500

from:http://www.lanxinbase.com/sys/Windows/65477.htm

Leave a Comment

 
Copyright © 2008-2021 lanxinbase.com Rights Reserved. | 粤ICP备14086738号-3 |