diff options
author | Kevin Chabowski <kevin@kch42.de> | 2011-12-28 14:38:20 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2011-12-28 14:38:20 +0100 |
commit | e99281261767710f96b9967a0ab03a3ea24a05e0 (patch) | |
tree | 0630f0838ddcc13f779fcef7f634326eeafce77e /.htaccess | |
download | r7r-repo-e99281261767710f96b9967a0ab03a3ea24a05e0.tar.gz r7r-repo-e99281261767710f96b9967a0ab03a3ea24a05e0.tar.bz2 r7r-repo-e99281261767710f96b9967a0ab03a3ea24a05e0.zip |
Initial Commit.
* Many files copied from Ratatöskr (maybe there should be some kind of
libratatoeskr ?)
* Included the Stupid Template Engine
* Wrote first version of models.php
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..7db1e17 --- /dev/null +++ b/.htaccess @@ -0,0 +1,14 @@ +RewriteEngine On +Options FollowSymLinks + +RewriteCond %{REQUEST_FILENAME} -f [OR] +RewriteCond %{REQUEST_FILENAME} -d +RewriteRule ^(.+) - [PT,L] + + +RewriteRule (.*) index.php?action=$1 [QSA,L] + +<Files *.php> + Order Allow,Deny + Deny from all +</Files> |