I have been working on making own framework and focusing on learning more advanced programming practices, than I learned at college. I use .htaccess to redirect all page request to my bootstrap file that loads controllers and themes based on the request URI.
The URL format is site.com/Controller[/optional/multiple/params]
The problem is that, lets say, I am trying to include an image or css file and it doesn't exist. In firebug they will not show as 404 errors because of the redirect.
.htacess file
Options +FollowSymLinks
IndexIgnore */*
# Turn on the RewriteEngine
RewriteEngine On
# Redirect to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
I do check and parse the URI and it does forward to the 404 controller and generate a 404 header for the URI requested. However for embeded files like CSS, images etc. they show the same response as the page requested and will not generate 404 errors.
I.E if you go to index.php, index.php will load fine but all the invalid css files will have the same header response as index.php.
Here is the code that loads the controller after the URI is parsed:
//locate
$file = 'Lume/' . self::$AppPath . 'Controller/' . self::$ControllerName;
if(!file_exists($file . '.php')){
header('HTTP/1.0 404 Not Found');
$file='Lume/' . self::$AppPath . 'Controller/_404.php';
}
//create
$controller = str_replace('/', '\\', '/' . $file);
if(!is_subclass_of($controller, '\Lume\Abstracts\Controller'))
throw new \Exception('Route::Main The controller must extend from Lume\Abstracts\Controller');
self::$Controller =& new $controller();
/as the request url. – Marc B Aug 19 '12 at 17:07LandQSA): httpd.apache.org/docs/current/rewrite/flags.html - also read up on regex quantifiers here: regular-expressions.info/repeat.html – DaveRandom Aug 19 '12 at 17:14