add framework and basic application files
This commit is contained in:
commit
3fca3cab9b
72 changed files with 6716 additions and 0 deletions
30
.htaccess
Normal file
30
.htaccess
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue