server/src/public/.htaccess
author ymh <ymh.work@gmail.com>
Mon, 14 Nov 2016 16:27:55 +0100
changeset 419 a37e8629a95c
parent 1 01a844d292ac
permissions -rw-r--r--
Added tag 0.0.11 for changeset 6eb84397be15

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On

    # Redirect Trailing Slashes...
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>