laravel尾随斜杠重定向到本地主机

当我尝试这个

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>

答案 1

将您的代码更改为:

Options -MultiViews
RewriteEngine On
RewriteBase /Testlaravel/public/

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

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

答案 2

如果上述方法不起作用,请使用缓存清除浏览器历史记录,然后重试。


推荐