如何访问 LINUX 中 LAMPP 下不同子文件夹中的多个 php 文件
how to access multiple php files in different sub-folders under LAMPP in LINUX
您好,我是 LINUX 的新手,最近安装了 LINUXFX,效果很好。现在我有 LAMPP (XAMPP) 配置问题。安装 XAMPP 后,我能够成功加载 XAMPP 演示页面,但是如果我想打开位于不同子目录中的项目文件夹,我不能。
具体来说,我已将我的项目文件夹复制到 /LAMPP/HTDOCS/ 并且在 .CONF 文件中我可以更改根路径以仅访问一个项目文件夹。我怎样才能为多个项目制作它。请帮忙!
if($row){
if($row['role']==0 || $row['role']=='0'){
$_SESSION['login']=$Cashier;
echo'<script>location.href="admin_dashboard.php";</script>';
}elseif($row['role']==1 || $row['role']=='1'){
$_SESSION['login']=$Cashier;
echo'<script>location.href="cashier_dashboard.php";</script>';
}else{
echo'<script>alert("!This username ");
location.href="index.php";</script>';
}
}else{
echo'<script>alert("!This username and password do not match ");
location.href="index.php";</script>';
}
}
$conn->close();
我已经解决了下面提到的问题。
首先按照@Cbroe 的建议,我在 Apache 配置文件中设置了路径。问题出在文件名上。文件名在代码中被指定为“cashier_dashboard.php”,原始文件名是“Cashier_Dashboard.php”。与之前在 windows 10 中执行相同操作时一样,它可以毫无问题地接受代码。我假设在 LINUX 中,我们在分配文件名时必须非常小心,这在 PHP 代码中也应该相同!
感谢@cbroe 对我的指导!
您好,我是 LINUX 的新手,最近安装了 LINUXFX,效果很好。现在我有 LAMPP (XAMPP) 配置问题。安装 XAMPP 后,我能够成功加载 XAMPP 演示页面,但是如果我想打开位于不同子目录中的项目文件夹,我不能。
具体来说,我已将我的项目文件夹复制到 /LAMPP/HTDOCS/ 并且在 .CONF 文件中我可以更改根路径以仅访问一个项目文件夹。我怎样才能为多个项目制作它。请帮忙!
if($row){
if($row['role']==0 || $row['role']=='0'){
$_SESSION['login']=$Cashier;
echo'<script>location.href="admin_dashboard.php";</script>';
}elseif($row['role']==1 || $row['role']=='1'){
$_SESSION['login']=$Cashier;
echo'<script>location.href="cashier_dashboard.php";</script>';
}else{
echo'<script>alert("!This username ");
location.href="index.php";</script>';
}
}else{
echo'<script>alert("!This username and password do not match ");
location.href="index.php";</script>';
}
}
$conn->close();
我已经解决了下面提到的问题。 首先按照@Cbroe 的建议,我在 Apache 配置文件中设置了路径。问题出在文件名上。文件名在代码中被指定为“cashier_dashboard.php”,原始文件名是“Cashier_Dashboard.php”。与之前在 windows 10 中执行相同操作时一样,它可以毫无问题地接受代码。我假设在 LINUX 中,我们在分配文件名时必须非常小心,这在 PHP 代码中也应该相同!
感谢@cbroe 对我的指导!