diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-23 14:45:44 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-23 14:45:44 -0700 |
commit | 0dab5f58723cba8b5915c694a8200e242cc9ec02 (patch) | |
tree | 240bc8ff72c69bde7789d08493eeee87de1f1a38 /htaccess.sample | |
parent | 749d9bfbbf65d962804bea1fa510039da185179f (diff) | |
parent | 7fff454ff931635dc1aca6a67af194b25567a65b (diff) |
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Diffstat (limited to 'htaccess.sample')
-rw-r--r-- | htaccess.sample | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/htaccess.sample b/htaccess.sample index 634900dbf..942e98334 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -1,12 +1,14 @@ -RewriteEngine On +<IfModule mod_rewrite.c> + RewriteEngine On -# NOTE: change this to your actual Laconica path; may be "/". + # NOTE: change this to your actual Laconica path; may be "/". -RewriteBase /mublog/ + RewriteBase /mublog/ -RewriteCond %{REQUEST_FILENAME} !-f -RewriteCond %{REQUEST_FILENAME} !-d -RewriteRule (.*) index.php?p=$1 [L,QSA] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule (.*) index.php?p=$1 [L,QSA] +</IfModule> <FilesMatch "\.(ini)"> Order allow,deny |