XAMPP 重定向到仪表板而不是所需页面
Posted
技术标签:
【中文标题】XAMPP 重定向到仪表板而不是所需页面【英文标题】:XAMPP redirects to dashboard instead of desired page 【发布时间】:2017-06-28 13:13:21 【问题描述】:所以我使用的是 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>
【问题讨论】:
请发布您的 .htaccess 重写规则。 我已经尝试删除 htdocs 中的 index.php 文件,但我进入了 localhost 页面。当我点击项目时,会将我重定向到我的索引页面,但链接也不起作用 你点击的是什么链接? @HonzaRydrych 我在哪里可以找到它们 :)? @MasivuyeCokile 例如 register.php 链接 【参考方案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="/"
会将您重定向到C:/xampp/htdocs
中的index.php
,而C:/xampp/htdocs
将重定向到C:/xampp/htdocs/dashboard/
(localhost/dashboard
)。
【讨论】:
【参考方案2】:尝试将端口号更改为新的并重新启动 apache 服务器。 我将端口号从 8082 更改为 8084 并重新启动服务器。这对我有用。
【讨论】:
以上是关于XAMPP 重定向到仪表板而不是所需页面的主要内容,如果未能解决你的问题,请参考以下文章
OrangeHRM:Google oauth 在成功授权后重定向到登录页面而不是仪表板