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.
Files
core/.htaccess
2010-11-09 13:59:22 -08:00

19 lines
359 B
ApacheConf

Options -Indexes
AddType application/x-java-archive .jar
<FilesMatch "\.(out|log|git)$">
Deny from all
</FilesMatch>
<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>