Xampp 本地主机/仪表板

Posted

技术标签:

【中文标题】Xampp 本地主机/仪表板【英文标题】:Xampp localhost/dashboard 【发布时间】:2018-06-15 22:39:42 【问题描述】:

我下载了最新版本的 xampp 并安装了它以及所有内容,但是当我在浏览器中键入“localhost”时,它会将我重定向到 localhost/dashboard 有没有办法像以前一样键入 localhost 并查看目录和文件?

在某些版本的 xampp 中,您只需更改 index.php 的名称或将其删除,您就可以从浏览器中看到 localhost 中的目录和文件

有人知道哪个版本吗?或者如何解决问题?

【问题讨论】:

你必须编辑 php 配置文件 安装后是否启动了xampp(apache/mysql)? 【参考方案1】:

只需创建文件index.php 并将其保存到:C:\xampp\htdocs\

喜欢用户 Matiur Ra​​hman。谢谢,它对我有用。您可以复制此脚本并将其粘贴到您的 index.php 文件中。

<?php
   if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) 
    $uri = 'https://';
    else 
    $uri = 'http://';
   
    $uri .= $_SERVER['HTTP_HOST'];
   header('Location: '.$uri.'/dashboard/');
   exit;
?>

【讨论】:

【参考方案2】:

这是实际发生的事情 localhost 表示您要打开 htdocs。 首先它将搜索任何名为 index.php 或 index.html 的文件。如果其中之一存在,它将打开文件。 如果这些都不存在,那么它将打开您想要的 htdocs 目录中的所有文件夹/文件。

所以,最简单的解决方案是将 index.php 或 index.html 重命名为 index2.php 等。

【讨论】:

【参考方案3】:

想要 xampp 中的文件夹列表吗?

只需将文件 index.php 删除或更改为 index.txt。 您只需输入 url: localhost 即可获得列表。

【讨论】:

【参考方案4】:

输入您的 URL localhost/[htdocs 中的文件夹名称]

【讨论】:

是的,我知道,但我想输入 url “localhost”并显示所有文件和目录,而不是输入整个 url,但谢谢【参考方案5】:

如果你想显示目录而不是编辑htdocs/index.php文件

下面的代码是显示表中的所有目录

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Welcome to Nims Server</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="server/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- START PAGE SOURCE -->
<div id="wrap">
  <div id="top">
    <h1 id="sitename">Nims <em>Server</em> Directory list</h1>
    <div id="searchbar">
      <form action="#">
        <div id="searchfield">
          <input type="text" name="keyword" class="keyword" />
          <input class="searchbutton" type="image" src="server/images/searchgo.gif"   />
        </div>
      </form>
    </div>
  </div>

<div class="background">
<div class="transbox">
<table  border="0" cellspacing="3" cellpadding="5" style="border:0px solid #333333;background: #F9F9F9;"> 
<tr>
<?php
//echo md5("saketbook007");

//File functuion DIR is used here.
$d = dir($_SERVER['DOCUMENT_ROOT']); 
$i=-1;
//Loop start with read function
while ($entry = $d->read()) 
if($entry == "." || $entry =="..")
else
?>
<td  class="site" ><a href="<?php echo $entry;?>" ><?php echo ucfirst($entry); ?></a></td>  
<?php 

if($i%3 == 0)
echo "</tr><tr>";

$i++;
?>
</tr> 
</table>

<?php $d->close();
?> 

</div>
</div>
</div>
   </div></div></body>
</html>

风格:

@import url("fontface.css");
* 
    padding:0;
    margin:0;

.clear 
    clear:both;


body 
    background:url(images/bg.jpg) repeat;
    font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
    color:#212713;

#wrap 
    width:1300px;
    margin:auto;


#sitename 
    font: normal 46px chunk;
    color:#1b2502;
    text-shadow:#5d7a17 1px 1px 1px;
    display:block;
    padding:45px 0 0 0;
    width:60%;
    float:left;

#searchbar 
    width:39%;
    float:right;

#sitename em 
    font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;

#top 
    height:145px;

img 

    width:90%;
    height:250px;
    padding:10px;
    border:1px solid #000;
    margin:0 0 0 50px;



.post h2 a 
    color:#656f42;
    text-decoration:none;

#searchbar 
    padding:55px 0 0 0;

#searchfield 
    background:url(images/searchbar.gif) no-repeat;
    width:239px;
    height:35px;
    float:right;

#searchfield .keyword 
    width:170px;
    background:transparent;
    border:none;
    padding:8px 0 0 10px;
    color:#fff;
    display:block;
    float:left;

#searchfield .searchbutton 
    display:block;
    float:left;
    margin:7px 0 0 5px;


div.background

  background:url(h.jpg) repeat-x;
  border: 2px solid black;

  width:99%;

div.transbox

  margin: 15px;
  background-color: #ffffff;

  border: 1px solid black;
  opacity:0.8;
  filter:alpha(opacity=60); /* For IE8 and earlier */
  height:500px;


.site

border:1px solid #CCC; 


.site atext-decoration:none;font-weight:bold; color:#000; line-height:2
.site:hoverbackground:#000; border:1px solid #03C;
.site:hover acolor:#FFF

输出:

【讨论】:

感谢我尝试修改 index.php,但它不起作用我想我的代码有问题 欢迎@Alberto :)【参考方案6】:

试试这个解决方案:

转到->

    xammp ->htdocs-> 然后从 htdocs 文件夹中打开 index.php 您可以修改仪表板 重启服务器

示例代码 index.php :

    <?php
    if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) 
        $uri = 'https://';
     else 
        $uri = 'http://';
    
    $uri .= $_SERVER['HTTP_HOST'];
    header('Location: '.$uri.'/dashboard/');
    exit;
   ?>

【讨论】:

以上是关于Xampp 本地主机/仪表板的主要内容,如果未能解决你的问题,请参考以下文章

链接重定向到仪表板 xampp

Xampp 仪表板不工作

带有 Xampp 的虚拟主机重定向到 Windows 上的仪表板

虚拟主机将我重定向到 Xampp 仪表板

如何解决本地主机中的 WordPress 登录问题?

加载wordpress时xampp切换到localhost