2011-07-20 62 views

回答

0

沒有找到任何可能的解決方案如何在Apache中做到這一點。

不過,如果您使用的是PHP,請嘗試使用PHP register_shutdown_function函數。

示例代碼:

set_time_limit(1); 
function shutdown() { 
    if (! defined('FINISHED')) { 
     header('Location: /timeout'); 
    } 
} 

register_shutdown_function('shutdown'); 

while (true) {} 

define('FINISHED', 1); 

不過這將在致命錯誤,以及和後腳本中手動die()exit()調用執行。

相關問題