CMS for the late garbage.fm
1<?php
2/*
3 default file for which all requests should be routed from apache, unless a
4 file with that name exists. with mod_rewrite, this should look like:
5
6 # enable mod_rewrite
7 RewriteEngine on
8
9 # if a file with that name exists in public/, just serve it directly
10 RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
11
12 # otherwise route everything to halfmoon
13 RewriteRule ^(.*)$ /index.php/%{REQUEST_URI} [QSA,L]
14*/
15
16require_once("../halfmoon/interfaces/apache.php");
17
18?>