185d08282b
stops those apache 500 errors when it's not installed
17 lines
322 B
Plaintext
17 lines
322 B
Plaintext
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
|
|
# NOTE: change this to your actual Laconica path; may be "/".
|
|
|
|
RewriteBase /mublog/
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule (.*) index.php?p=$1 [L,QSA]
|
|
</IfModule>
|
|
|
|
<FilesMatch "\.(ini)">
|
|
Order allow,deny
|
|
</FilesMatch>
|
|
|