getting cakephp set up with its own web server(s) and docroot

This commit is contained in:
Dan Buch
2011-01-02 23:58:42 -05:00
parent aaa61a737b
commit 4b0cfa88e7
756 changed files with 2844 additions and 4 deletions

5
web-cake/html/.htaccess Normal file
View File

@@ -0,0 +1,5 @@
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>