一个.htaccess的简单实例

发布时间:2019-11-14编辑:脚本学堂
为大家介绍一个.htaccess的简单例子,apache环境下,多用.htaccess配置伪静态,如果遇到不起作用的情况,可以参照本文的介绍,看看是不是.htaccess文件格式有误。

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

RewriteEngine on
ErrorDocument 404 /job.php
RewriteRule ^(.*).(asp|aspx|asa|asax|dll|jsp|cgi|fcgi|pl)(.*)$ /info.php
Redirect "/index.html" "http://www.jb200.com/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.jb200.com/index.php"
重定向。将index.html页面重定向至另一个站点:http://www.jb200.com/index.php。

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

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