Skip to content

Instantly share code, notes, and snippets.

@infurno
Created February 4, 2013 15:29
Show Gist options
  • Select an option

  • Save infurno/4707421 to your computer and use it in GitHub Desktop.

Select an option

Save infurno/4707421 to your computer and use it in GitHub Desktop.
htaccess. I always loose this.
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
# Send request via index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond ^(.*)$ index.php/$1 [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment