Pony.fm/public/.htaccess

17 lines
412 B
ApacheConf
Raw Normal View History

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