禁用或删除 Magento 网站的“.maintenance.flag”文件的永久解决方案?

Permanent solution of the disable or remove the ".maintenance.flag" file for Magento website?

我有一个 Magento 网站,它一直处于维护模式。每天我都需要从 "public_html/var/" 文件夹中删除 "maintenance.flag" 文件。

if (file_exists($maintenanceFile)) 
{ /* include_once dirname(__FILE__) . '/errors/503.php'; */ 
$path="maintenance.flag"; 
unlink($path); exit; 

这个问题可以吗?

是的,上面的代码是正确的,可以永久删除 maintenance.flag 文件。