Browse Source

Fixed trailing slash redirection for subdirectory installs.

Previously redirection to remove trailing slashes would fail if Laravel was not installed in the root directory.
Drew 6 years ago
parent
commit
c5f993fa28
1 changed files with 2 additions and 1 deletions
  1. 2 1
      public/.htaccess

+ 2 - 1
public/.htaccess

@@ -7,7 +7,8 @@
 
     # Redirect Trailing Slashes If Not A Folder...
     RewriteCond %{REQUEST_FILENAME} !-d
-    RewriteRule ^(.*)/$ /$1 [L,R=301]
+    RewriteCond %{REQUEST_URI} (.+)/$
+    RewriteRule ^ %1 [L,R=301]
 
     # Handle Front Controller...
     RewriteCond %{REQUEST_FILENAME} !-d