Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm just starting with CakePHP and I have a question.

The idea is to have URLs like this:

domain.tld/some-title-of-a-page

...and it should open "page" controller with "show" action and some-title-of-a-page as a parameter. What I did in routes.php is:

Router::connect('/*', array('controller' => 'page', 'action' => 'show'));

The problem is that I'm unable to read my /css/layout.css file, because it's being parsed as a page with such a title by CakePHP. So what's the recipe for this cake?

Edit: Wrong location. The CSS folder should be in app/webroot, not in the web root of the host.

share|improve this question
What's the location of css/layout.css? – yoda Oct 3 '11 at 12:30
It's in the root folder, together with the request collector (index.php). – Petar Oct 3 '11 at 12:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.