RewriteEngine on
ErrorDocument 404 /job.php
RewriteRule ^(.*)\.(asp|aspx|asa|asax|dll|jsp|cgi|fcgi|pl)(.*)$ /info.php
Redirect "/index.html" "http://xujianyou2012.l300.bizcn.com/index.php"
RewriteRule ^download\.html /download.php
将以上内容写入一个新文件,命名为.htaccess即可。
接下来简单说明一下这几条规则。
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://xujianyou2012.l300.bizcn.com/index.php"
重定向。将index.html页面重定向至另一个站点:http://xujianyou2012.l300.bizcn.com/index.php。
RewriteRule ^download\.html /download.php
URL转发。将对download.html页面的请求转发至download.php页面。
其中RewriteRule可用于实现伪静态,如果.htaccess文件里含有这类规则,必须先启用rewrite:RewriteEngine on。