11
0
Fork 0
mirror of https://github.com/ChaosChemnitz/interfug15 synced 2025-06-28 13:36:07 +02:00

initiales Commit

This commit is contained in:
root 2015-06-15 23:48:17 +02:00
commit 3e0855edb8
24 changed files with 13402 additions and 0 deletions

19
.htaccess Executable file
View file

@ -0,0 +1,19 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^css/([a-z\-]+)\.css$ style/$1.css.php [L]
RewriteRule ^([a-z]+)/?$ index.php?page=$1 [L]
#RewriteRule ^robots\.txt$ robots.php [L]
#RewriteRule ^Sitemap\.xml$ sitemap.php [L]
#RewriteRule ^js/([^/\.]+)\.js$ script.php?id=$1 [L]
#RewriteRule ^data/([A-Za-z0-9]{32})/?$ media.php?id=$1&raw=true [L]
#RewriteRule ^([a-z0-9]{32})/?$ index.php?id=$1 [L]
#RewriteRule ^([^/\.]+)/([^/\.]+)/(.) - [F,L]
</IfModule>
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|swf)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>