Croogo is a free and open source content management system, built on top of CakePHP framework.
A little tweak to your .htaccess file in Croogo will get your css serving correctly from within your themes directory.
Look in your webroot/.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
And amend to:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
Options -MultiViews
Filed under: code snippets, development, cakephp
Thanks this saved me