This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/.htaccess
2010-07-01 16:48:07 -07:00

14 lines
260 B
ApacheConf

Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine on
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>