I thought I had this all figured out until now.
Put together a new app. the structure is as follows
/Users/dtirer/Sites/new_site
/cake (core cake)
/admin
/app
/index.php
/vendors
/form
/app
/index.php
/vendors
The 'Form' and 'Admin' directories are more or less 2 separate apps
using the core '/cake' library.
Everything works fine until I put in the .htaccess for the /admin
folder or the /form folder. These look like this:
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
If it take that out, I get the welcome screen, but with no styling.
When it's in, I get this error:
The requested URL /Users/dtirer/Sites/new_site/admin/app/webroot/ was
not found on this server.
The wierd part is, that path should be correct. any ideas?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---