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

一个.htaccess的简单实例

时间:2014-08-12 22:58来源:linux.it.net.cn 作者:it

一个.htaccess的简单实例,内容如下:
 

RewriteEngine on
ErrorDocument 404 /job.php
RewriteRule ^(.*)\.(asp|aspx|asa|asax|dll|jsp|cgi|fcgi|pl)(.*)$ /info.php
Redirect "/index.html" "http://www.it.net.cn/index.php"
RewriteRule ^download\.html /download.php

规则说明:
ErrorDocument 404 /job.php
自定义错误信息。将404错误定义为job.php页面的内容。

RewriteRule ^(.*)\.(asp|aspx|asa|asax|dll|jsp|cgi|fcgi|pl)(.*)$ /info.php
URL转发。将.asp\.aspx等http请求转发至info.php页面。

Redirect "/index.html" "http://www.it.net.cn/index.php"
重定向。将index.html页面重定向至另一个站点:http://www.it.net.cn/index.php。

RewriteRule ^download\.html /download.php
URL转发。将对download.html页面的请求转发至download.php页面。

RewriteRule 多用于实现伪静态,如果.htaccess文件里含有这类规则,需要先启用rewrite:RewriteEngine on才可以。

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