当我尝试这个
http://localhost/Testlaravel/public/users/login
有用。但是当我尝试
http://localhost/Testlaravel/public/users/login/
它把我重定向到
http://localhost/users/login/
知道为什么吗?
这是我的 htaccess 文件
<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>