ryanfmurphy/php_orm_router/master/.htaccess
# for Apache configurations - make everything run through index.php
# you may need this in your httpd.conf <VirtualHost> to enable .htaccess:
#<Directory /path/to/docroot>
# Options FollowSymLinks
# AllowOverride All
#</Directory>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
</IfModule>
Files
