While migrating the website. I'm not able to load CSS and JS files in my Codeigniter project.
FOLDER STRUCTURE:
home > username > public_html > application > [ cache , config , controller, core, ... ]
home > username > public_html > media > admin > [ attachment, css, datepicl, ...]
home > username > public_html > media > front > asset > [css, fonts, img, ...]
home > username > public_html > media > uploads > [associatepartner, banner, ..]
home > username > public_html > system > [core, database, ..]
config.php < config < application < public_html
$config['base_url'] = 'http://localhost/domain.com';
header.php < layout < front < views < application < public_html
<link rel="stylesheet" type="text/css" href="<?php echo FRONT_MEDIA_URL; ?>asset/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="<?php echo FRONT_MEDIA_URL; ?>asset/css/fontawesome-all.min.css">
<link rel="stylesheet" type="text/css" href="<?php echo FRONT_MEDIA_URL; ?>asset/css/reset.css">
<link rel="stylesheet" type="text/css" href="<?php echo FRONT_MEDIA_URL; ?>asset/css/style.css">
<link rel="stylesheet" type="text/css" href="<?php echo FRONT_MEDIA_URL; ?>asset/css/responsive.css">
Help. Thanks! (Do let me know if I need to furnish more details)
EDIT: view-source:http : / / domain.com/ (Please ignore spaces in between http.)
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="http : / / localhost/domain/media/front/asset/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="http : / / localhost/domain/media/front/asset/css/fontawesome-all.min.css">
<link rel="stylesheet" type="text/css" href="http : / / localhost/domain/media/front/asset/css/reset.css">
<link rel="stylesheet" type="text/css" href="http : / / localhost/domain/media/front/asset/css/style.css">
<link rel="stylesheet" type="text/css" href="http : / / localhost/domain/media/front/asset/css/responsive.css">
EDIT: Added constants.php
constants.php < config < application < public_html
defined('BASEPATH') OR exit('No direct script access allowed');
if (sSITE_MODE == 'live') {
define('URL', 'https://www.theother2thirds.net/');
} else if (sSITE_MODE == 'beta') {
define('URL', 'https://www.theother2thirds.net/');
} else {
define('URL', 'http://localhost/theother2thirds/');
}