mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
13 lines
296 B
ApacheConf
13 lines
296 B
ApacheConf
|
|
RewriteEngine On
|
|
|
|
RewriteRule ^.*\.svn.*$ /404
|
|
|
|
RewriteRule ^$ index.html [QSA]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !favicon.ico
|
|
RewriteCond %{REQUEST_FILENAME} !robots.txt
|
|
RewriteRule ^(.*)$ /dispatch.php [QSA,L]
|
|
|