2011-02-18 54 views
2

是否可以在发生404的情况下更改.htaccess中的DirectoryIndex?我有一个场景,如果有404我想将DirectoryIndex更改为index.htm而不是index.php。默认情况下,虽然我必须在.htaccess中声明DirectoryIndex,所以我正在寻找类似if语句的东西。有条件的.htaccess 404 DirectoryIndex

if 404 
then DirectoryIndex=index.htm 
else 
then DirectoryIndex=index.php 

这是可能的吗?谢谢。在你的.htaccess

回答

2

组自定义错误页

ErrorDocument 404 index.htm