Joomla 1.0,管理员链接重定向到"installation/index.php",如何防止这


Joomla 1.0, administrator link redirect to "installation/index.php", how to prevent this redirection?

我只是迁移我的旧Joomla 1.0网站到localhost,前端工作得很好,但当我试图打开管理员它的重定向到"installation/index.php"文件,没有打开,如何防止这种事情,我检查了下面的代码路径存在于管理员/index2.php文件的正确路径,但仍然管理员未打开。

if (!file_exists( 'C:/xampp/htdocs/myproject/configuration.php' )) {
       header( 'Location: ../installation/index.php' );
       exit();
       }

我不相信administration/index2.php的源文件会验证path:

中的文件

"C:/xampp/根/myproject/配置的configuration

修改了吗?