authserver/testCAS/public/.htaccess
author rougeronj
Mon, 07 Sep 2015 16:25:09 +0200
changeset 98 e00c89006e9a
parent 0 1afc9d2ab94d
permissions -rw-r--r--
add new option to allow enter a tag through an input box rather than button. Adapt css to the new input box

<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>