不寻常的链接创建问题

时间:2015-04-27 13:36:20

标签: php html css

我有一个标题栏,我正在尝试创建一个链接。这个网站是在我加入之前由另一家公司创建的。谈到HTML时,我不是一个完全的初学者,但这让我很难过。我在标题栏上创建了一个页面链接。该页面名为gallery.php。该链接指向gallery.php,该目录与其他页面位于同一目录中。当您按下链接时,它表示当页面在同一目录中显示时无法找到该页面。我还想指出该页面使用了twitters bootstrap框架。

以下是标题的HTML:

<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="<?php echo $description; ?>">
<meta name="author" content="Lewis Precision, Inc.">

<link rel="shortcut icon" href="<?php echo base_url(); ?>favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="<?php echo base_url(); ?>apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="<?php echo base_url(); ?>apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="<?php echo base_url(); ?>apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="<?php echo base_url(); ?>apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="<?php echo base_url(); ?>apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="<?php echo base_url(); ?>apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="<?php echo base_url(); ?>apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="<?php echo base_url(); ?>apple-touch-icon-152x152.png" />

<link rel="publisher" href="https://plus.google.com/116311092915765331437"/>
<title><?php echo $title; ?></title>

<!-- Bootstrap core CSS -->
<link href="<?php echo base_url(); ?>assets/css/bootstrap.min.css" rel="stylesheet">

<!-- Custom styles for this template -->
<link href="<?php echo base_url(); ?>assets/css/sticky-footer-navbar.css" rel="stylesheet">

<link href='http://fonts.googleapis.com/css?family=Merriweather+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Note+Sans' rel='stylesheet' type='text/css'>

<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="<?php echo base_url(); ?>assets/js/ie-emulation-modes-warning.js"></script>

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->

<body>

<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
  <div class="container">
    <div class="navbar-header">
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">     <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span>     <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
</div>
<div id="navbar" class="collapse navbar-collapse">
  <ul class="nav navbar-nav navbar-right">
    <li><a style="color:#CDD3DA" href="<?php echo base_url(); ?>">Home</a></li>
    <!--<li><a style="color:#CDD3DA" href="<?php echo base_url(); ?>">Home</a></li>-->

    <!-- Services 
        <li><a style="color:#CDD3DA" href="precision-cnc-milling-services">Services</a></li> 
        -->
    <li><a style="color:#CDD3DA" href="industries-served">Industries</a></li>
    <li><a style="color:#CDD3DA" href="precision-cnc-equipment">Equipment</a></li>
    <!--<li><a style="color:#CDD3DA" href="gallery">Gallery</a></li>-->
    <li><a style="color:#CDD3DA" href="meet-the-staff">Staff</a></li>
    <li><a style="color:#CDD3DA" href="contact">Contact</a></li>
  </ul>
</div>
<!--/.nav-collapse --> 

对不起,这有点令人费解。任何人都可以对此有所了解吗?

提前谢谢!

1 个答案:

答案 0 :(得分:0)

您的链接正在查找名为/gallery/的文件夹,而不是名为gallery.php

的网页
<li><a style="color:#CDD3DA" href="gallery">Gallery</a></li>

您需要创建该名称的文件夹,将gallery.php重命名为index.php并将其放在此文件夹中。

OR

将链接更改为gallery.php