We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c955f4 + c852eb8 commit c3378a8Copy full SHA for c3378a8
public/.htaccess
@@ -0,0 +1,17 @@
1
+<IfModule mod_rewrite.c>
2
+ <IfModule mod_negotiation.c>
3
+ Options -MultiViews -Indexes
4
+ </IfModule>
5
+
6
+ RewriteEngine On
7
8
+ # Redirect Trailing Slashes If Not A Folder...
9
+ RewriteCond %{REQUEST_FILENAME} !-d
10
+ RewriteCond %{REQUEST_URI} (.+)/$
11
+ RewriteRule ^ %1 [L,R=301]
12
13
+ # Send Requests To Front Controller...
14
15
+ RewriteCond %{REQUEST_FILENAME} !-f
16
+ RewriteRule ^ index.php [L]
17
+</IfModule>
0 commit comments