Skip to content

Commit

Permalink
feat: Add .htaccess example
Browse files Browse the repository at this point in the history
  • Loading branch information
istiak-tridip committed Feb 27, 2021
1 parent bc75f8f commit 6f291de
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions public/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>

RewriteEngine On

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

# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>

0 comments on commit 6f291de

Please sign in to comment.