Laravel正在将页面重定向到index.php,只要它来自另一个页面。例如,来自用户电子邮件的验证链接将被重定向到site.com/index.php,而不是site.com/verify/12t0k3n我发现这是我的htaccess文件,我尝试了几种解决方案,但没有一种方法可以让某些人只重定向到site.com。而且我还强制使用HTTPS
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle https enforcement
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</IfModule>
# php -- BEGIN cPanel-generated handler, do not edit
# Set the âea-php72â package as the default âPHPâ programming language.
<IfModule mime_module>
AddType application/x-httpd-ea-php72 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
有人能帮我吗?我在其他拉拉维尔的工作中也使用过这种格式,看起来很好,但这一个有病。或者是阿帕奇阻止了它?