My header.php doesn't link to default.css properly. Page loads without CSS applied. If I view the source of the page and click on the link to .css file - 403 Forbidden shows up in Source View.
config.php
$config['base_url'] = 'http://localhost/dev/';
routes.php
$route['default_controller'] = "page/view";
$route['404_override'] = '';
pages is the controller
view is the method
application/view/templates/header.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="<?php echo base_url(); ?>application/css/default.css" rel="stylesheet" type="text/css" />
<title><?php echo $title; ?></title>
</head>
<body>
application/css/default.css
* {margin:0;padding:0;}
body {
background-image: url(../images/bg.gif);
background-repeat: repeat-x;
...
}
application/images/
-- bg.gif GIF Image 1KB
href="/application/css/default.css"