I just uploaded a brand new copy of CakePHP 2.3 into a new domain-name, and right away it says "GET http://example.com/css/cake.generic.css 404 (Not Found)" in chrome. I don't understand why it is doing this. I have made other CakePHP websites and had this problem but I remember solving it accidentally, not knowing what I did. I would like to know exactly how to solve this problem, if anyone knows.
There is info out there about htaccess, mod_rewrite, and other things I don't understand. I don't know anything about where these files are, what they do, how to use them, etc.
Please help!
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>