CakePHP Webroot .htaccess
- by Mr A
Normally one would have a webroot that looks like this:
/www/
|
+--index.php
|
+-- js/
| |
| +-- xyz.js
|
+-- css/
| |
| +--xyz.css
|
+---etc.....
With my setup, it is going to be most beneficial for me to move everything into a common subfolder, leaving the index.php of the Cake app in the root. I.e:
/www/
|
+--index.php
|
|
+-- resources
|
+-- js/
| |
| +-- xyz.js
|
+-- css/
| |
| +--xyz.css
|
+---etc.....
What is my .htaccess going to look like?
Thanks!