我在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安装。
答案 0 :(得分:0)
尝试运行localhost / filename.php 而不是运行具有给定地址的文件,例如c:/xampp/htdocs/filename.php 希望它能解决问题。