aboutsummaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess31
1 files changed, 31 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
new file mode 100644
index 0000000..b1de444
--- /dev/null
+++ b/.htaccess
@@ -0,0 +1,31 @@
+# this line may need to be removed on other hosts!
+Action php-fcgid /fcgi-bin/php-fcgi-starter-7.0
+
+<Files ~ "\.db$">
+ Order allow,deny
+ Deny from all
+</Files>
+
+<IfModule mod_rewrite.c>
+RewriteEngine On
+RewriteBase /microblog
+
+RewriteCond %{REQUEST_FILENAME} !-f
+RewriteCond %{REQUEST_FILENAME} !-d
+RewriteRule ^(.*) index.php [L]
+
+</IfModule>
+
+
+
+
+
+
+
+
+
+
+
+
+
+