]> projects.mako.cc - scuttle/blob - .htaccess
- Allow blacklisting and whitelisting of e-mail addresses used for new user accounts
[scuttle] / .htaccess
1 # Rewrite clean URLs onto real files
2 <IfModule mod_rewrite.c>
3   <IfDefine APACHE2>
4     AcceptPathInfo On
5   </IfDefine>
6   RewriteEngine On
7   RewriteBase /
8   RewriteCond %{REQUEST_FILENAME} !-f
9   RewriteCond %{REQUEST_FILENAME} !-d
10   RewriteCond %{REQUEST_FILENAME}.php -f
11   RewriteRule ^([^/]+)/?(.*) $1.php/$2 [L]
12 </IfModule>

Benjamin Mako Hill || Want to submit a patch?