我在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条答案
按热度按时间jslywgbw1#
尝试运行localhost/filename.php,而不是运行给定地址的文件,如c:/xampp/htdocs/filename.php希望它能解决这个问题。