Removed .htaccess file as it's no longer needed

This commit is contained in:
Chris Kankiewicz
2020-02-18 13:30:09 -07:00
parent 6e918a8fca
commit ed3eaaf436

View File

@@ -1,13 +0,0 @@
<IfModule mod_rewrite.c>
RewriteEngine On
# Remove trailing slashes if not a folder
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle the front controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>