我正在使用自定义Laravel CMS构建网站。
在公共目录中,有一个物理“资源”目录。
/家庭/ FSK / CMS /公共/资源/
我的网站还有一个名为资源的页面。
http://fsk.mysite.com/resources
问题是此资源页面保持重定向到资源物理目录。 http://fsk.mysite.com/resources/它不断添加尾部斜杠。
如何停止此重定向?这是我的htaccess。
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]