laravel Schrägstriche umleiten auf localhost

Wenn ich versuche diese

http://localhost/Testlaravel/public/users/login

es funktioniert. Aber wenn ich versuche

http://localhost/Testlaravel/public/users/login/

leitet es mich zu

http://localhost/users/login/

Ahnung warum?

Diese meine htaccess-Datei

<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>
InformationsquelleAutor user3213240 | 2014-02-12
Schreibe einen Kommentar