404 not found error on php website (namecheap)

112 Views Asked by At

I have just deployed a new php website I created on namecheap. When I visit the website homepage, it works fine, but when I try to access other pages, I get a 404 page not found error as seen in the image below. enter image description here

I have the following code in my .htaccess file

RewriteEngine On
RewriteRule ^([^\.]+)$ $1.php [NC,L]
RewriteRule ^([^\.]+)$ $1.html [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php?url=$1 [L,QSA]

My index.php file looks like this:

<?php

require_once __DIR__ . '/_core/config/init.php';
$query_string = 'url';
$_GET[$query_string] = isset($_GET[$query_string]) && !empty($_GET[$query_string]) ? $_GET[$query_string] : "home";

$url_array = explode("/", $_GET[$query_string]);

foreach ($url_array as $key => $value) {
    $url_array[$key] = preg_replace('/.php/', "", $url_array[$key]);
}

$_page = isset($url_array[0]) && !empty($url_array[0]) ? $url_array[0] : "index";
$_section = isset($url_array[1]) && !empty($url_array[1]) ? $url_array[1] : "index";

$url_array_count = count($url_array);

if ($url_array_count >= 3) {
    //error page
    include_once __DIR__ . "/assets/shared/404.php";
}


if (in_array($_page, getPages())){    
    include_once(__DIR__ . '/includes/components/head.php');
    include_once(__DIR__ . '/includes/pages/' . $_page . '.php');
    die();
}

$isLogin = isset($_SESSION['app_session']['cms']['is_login']) ? $_SESSION['app_session']['cms']['is_login'] : false;

if($_page == 'controls'){
    $cmsPg = getCMSPgName()[0]['sccPage'];   
    if($isLogin ){    
        include_once(__DIR__ . '/includes/cmspages/'.$_page.'.php');
        die();
    }else{
        include_once(__DIR__ . '/includes/cmspages/cmslogin.php');
        die();
    }
}else{
    if($isLogin ){             
        include_once(__DIR__ . '/includes/cmspages/'.$_page.'.php');
        die();
    }else{
        include_once(__DIR__ . '/includes/cmspages/cmslogin.php');
        die();
    }
}  include_once(__DIR__ . '/includes/cmspages/contentmgr.php');

Please, help with solution. Is there some configuration I'm missing on the live server?

0

There are 0 best solutions below