当我尝试这个
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>
将代码更改为此:
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]