Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyamain committed Mar 4, 2018
1 parent 32b0ba9 commit ed1c659
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .htaccess
@@ -0,0 +1,13 @@
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymlinks
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*[^/])$ $1/ [L,R=301]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L,QSA]
</IfModule>

0 comments on commit ed1c659

Please sign in to comment.