All pastes #2056611 Raw Edit

Anonymous

public text v1 · immutable
#2056611 ·published 2011-05-11 07:14 UTC
rendered paste body
Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
  RewriteEngine On
  #Ignore .yml files
  RewriteRule ^(.*).yml$ index.php [QSA,L]
  #If request a file - Just send it
  RewriteCond %{REQUEST_FILENAME} !-f
  #Don't load directory
  RewriteCond %{REQUEST_FILENAME} -d
  #Load our front controller
  RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>