laravel尾随斜杠重定向到本地主机
2022-08-31 00:59:20
当我尝试这个
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>