我有一些问题。我在www.quso.epizy.com
的index.php总是返回403禁止但是如果我自己键入重定向路径就行了。我将其重定向到www.quso.epizy.com/home
我的应用程序中的每个重定向都不起作用,并且所有重定向都禁止显示为什么?
它在localhost中工作正常但在托管中没有。我试过在论坛上问但没有答案。
我尝试使用header("location: www.quso.epizy.com/home/index.php");
,但重定向仍显示403禁止。
这是我的index.php
<?php
require_once 'config.php';
require_once 'vendor/libs/functions.php';
redirect(URL . 'home'); // redirect to authenticate page
这是重定向功能
function redirect($url, $permanent = false) {
if($permanent) {
header('HTTP/1.1 301 Moved Permanently');
}
header('Location: '.$url);
exit();
}
和URL的配置文件
define('URL', 'http://www.quso.epizy.com/');