gokul
gokul

Reputation: 41

when redirected to a page the css files , js , images etc aren't loading

I am new in codeigniter. actual page has no problems but when redirected to a page the css files , js , images etc aren't loading

<script   src="<?php echo site_url('resource/js/bootstrap.js'); ?>"></script>
<link href="<?php echo  site_url('resource/css/default.css'); ?>" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href=" <?php echo  site_url('resource/css/tab.css'); ?>" type="text/css" media="screen">
<link rel="stylesheet" href="<?php echo  site_url('resource/css/mob.css'); ?>" type="text/css" media="screen">
<link href="<?php echo  site_url('resource/css/nav.css'); ?>" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="<?php echo  site_url('resource/css/style.css'); ?>" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php echo  site_url('resource/font/font.css'); ?>" type="text/css" media="screen">

Upvotes: 1

Views: 68

Answers (1)

Aabir Hussain
Aabir Hussain

Reputation: 1181

I think you have to replace site_url() with base_url()

echo base_url(); // http://example.com/website
echo site_url(); // http://example.com/website/index.php

Upvotes: 1

Related Questions