Pony.fm/public/.htaccess

17 lines
412 B
ApacheConf
Raw Normal View History

2013-07-25 16:33:04 -05:00
<IfModule mod_rewrite.c>
2015-08-30 12:22:00 +01:00
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
2013-07-25 16:33:04 -05:00
2015-08-30 12:22:00 +01:00
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
2013-08-01 03:57:08 -05:00
2015-08-30 12:22:00 +01:00
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>