所以我使用XAMPP但是当我点击一个链接时,它会将我重定向到localhost / dashboard而不是我想要的页面。我该如何解决这个问题?
这是索引页面的代码
<!DOCTYPE html>
<html>
<head>
<title>SG Weredi</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="loginpagina.js"></script>
</head>
<body>
<div class="header">
<a href="/">Your App Name</a>
</div>
<div class="container-fluid">
<img class =" logo" src="http://www.weredi.nl/logo.png">
</div>
<?php if( !empty($user) ): ?>
<br />Welcome <?= $user['email']; ?>
<br /><br />You are successfully logged in!
<br /><br />
<a href="logout.php">Logout?</a>
<?php else: ?>
<h1>Please Login or Register</h1>
<a href="Infproject/login.php">Login</a> or
<a href="register.php">Register</a>
<?php endif; ?>
</body>
</html>
答案 0 :(得分:1)
唯一正确的链接是<a href="register.php">Register</a>
。
您应该为登录做同样的事情:
<a href="login.php">Login</a>
而不是
<a href="Infproject/login.php">Login</a>
。
相同的解决方案是链接到项目的主页:
<div class="header">
<a href="./">Your App Name</a>
</div>
而不是
<div class="header">
<a href="/">Your App Name</a>
</div>
因为您网站上的href="/"
会将您重定向到index.php
中的C:/xampp/htdocs
,并重定向到C:/xampp/htdocs/dashboard/
(localhost/dashboard
)。
答案 1 :(得分:0)
尝试将端口号更改为新的端口号,然后重新启动apache服务器。 我将端口号从8082更改为8084,然后重新启动了服务器。这对我有用。