current state as framework

This commit is contained in:
coderkun 2013-08-09 02:41:06 +02:00
commit b392eb9188
56 changed files with 5981 additions and 0 deletions

30
.htaccess Normal file
View file

@ -0,0 +1,30 @@
Allow From All
Options -Indexes -MultiViews
ErrorDocument 403 /www/error403.html
ErrorDocument 404 /www/error404.html
ErrorDocument 500 /www/error500.html
<Files ~ "\.inc$">
Order Deny,Allow
Deny From All
</Files>
<Files ~ "\.tpl$">
Order Deny,Allow
Deny From All
</Files>
<Files ~ "\.log$">
Order Deny,Allow
Deny From All
</Files>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)$ www/$1 [L]
</IfModule>