2011-02-18 48 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