public
Description: A BitTorrent tracker that makes podcast RSS feeds, written in the Symfony PHP framework.
Homepage: http://limecast.com/
Clone URL: git://github.com/WIZARDISHUNGRY/sflimetracker.git
sflimetracker / .htaccess
100644 17 lines (12 sloc) 0.391 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Options +FollowSymLinks +ExecCGI
 
<IfModule mod_rewrite.c>
  RewriteEngine On
 
  # uncomment the following line, if you are having trouble
  # getting no_script_name to work
  #RewriteBase /
 
  # we skip all files with .something
  RewriteCond %{REQUEST_URI} \..+$
  RewriteRule .* - [L]
 
  # no, so we redirect to our front web controller
  RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>