add framework and basic application files

This commit is contained in:
coderkun 2014-01-17 02:19:53 +01:00
commit 3fca3cab9b
72 changed files with 6716 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>