powdahound (owner)

Revisions

gist: 228879 Download_button fork
public
Public Clone URL: git://gist.github.com/228879.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
    RewriteEngine On
    RewriteBase /
    # Allow any files or directories that exist to be displayed directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    # Rewrite all other URLs to index.php/URL
    RewriteRule .* index.php/$0 [PT,L]