wordpress 这是什么意思,“XAMPP安装有问题:-(“?

4zcjmb1e  于 2023-08-03  发布在  WordPress
关注(0)|答案(1)|浏览(97)

我在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安装。

jslywgbw

jslywgbw1#

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

相关问题