链接将我重定向到xampp仪表板

时间:2016-08-27 16:55:01

标签: php html mysqli xampp

当我将鼠标悬停在我的类别上时,它会说链接会将我重定向到:

localhost /?page = catalog& category = 3

但是当我点击它时,它会将我重定向到localhost / dashboard。

有谁知道为什么会这样做以及如何解决这个问题?

这是我的_header.php

的代码
    <?php
    $objCatalogue = new Catalogue();
    $cats = $objCatalogue->getCategories();

    $objBusiness = new Business();
    $business = $objBusiness->getBusiness();
    ?>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Ecommerce website project</title>
    <meta name="description" content="Ecommerce website project" />
    <meta name="keywords" content="Ecommerce website project" />
    <meta http-equiv="imagetoolbar" content="no" />
    <link href="css/core.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="header">
     <div id="header_in">
       <h5><a href="/"><?php echo $business['name']; ?></a></h5>
     </div>
    </div>
    <div id="outer">
      <div id="wrapper">
        <div id="left">
          <h2>Categories</h2>
          <ul id="navigation">
            <?php
                if (!empty($cats)) {
                  foreach($cats as $cat) {
                    echo "<li><a href=\"/?page=catalogue&amp;category=".$cat['id']."\"";
                    echo Helper::getActive(array('category' => $cat['id']));
                    echo ">";
                    echo Helper::encodeHtml($cat['name']);
                    echo "</a></li>";
          }
        }
    ?>
        </ul>
    </div>
    <div id="right">

1 个答案:

答案 0 :(得分:0)

看起来你错过了一个页面名称。

  

本地主机/页=目录&安培;类别= 3

你有服务器:

  

本地主机

frontslash表示服务器内的文件夹。

  

/

? mark表示PHP的$ _GET函数。这只有在有页面处理时才有效。

  ?

页=目录&安培;类别= 3

所以你缺少像index.php或businesslist.php这样的页面 看起来像

  

本地主机/ index.php页面目录=&安培;类别= 3

话虽如此,看起来你也正在使用localhost从服务器的根目录(XAMPP)中提取。 XAMPP使用名为htdocs的文件夹来存放您的Web文件。因此,您可以通过为它们提供不同的文件夹名称并将它们保存在该文件夹中来同时练习构建多个站点。即:

>htdocs
-->website1
-->website2 etc...

在每个文件夹中,您将拥有索引和其他页面和文件夹。因此,如果我们说您建立了一个名为FredsCajunSpices.com的网站,您可以使用fredscajunspices作为文件夹名称,并在您的网页文件中调用它。

  

本地主机/ fredscajunspices / index.php页面目录=&安培;类别= 3

当您完成网站并将其移至网络时,您需要搜索并将所有“localhost / fredscajunspices /”替换为“”,然后您的链接将相对于域名。或者您可以创建完整链接并使用“http://www.fredscajunspices.com/”搜索/替换“localhost / fredscajunspices /”。

希望这有帮助。