这是什么意思,“ XAMPP安装:-(”出了什么问题?

时间:2020-07-11 08:21:08

标签: php wordpress apache xampp

我在xampp / htdocs / index.php中找到了它。该如何解决?

<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
    $uri = 'https://';
} else {
    $uri = 'http://';
}
    $uri .= $_SERVER['HTTP_HOST'];
    header('Location: '.$uri.'/dashboard/');
    exit;
?>
Something is wrong with the XAMPP installation :-(

注意:我的XAMMP安装可以运行本地WordPress安装。

1 个答案:

答案 0 :(得分:0)

尝试运行localhost / filename.php 而不是运行具有给定地址的文件,例如c:/xampp/htdocs/filename.php 希望它能解决问题。