Added a wait splash screen

This commit is contained in:
Pierre
2017-01-21 19:30:27 +01:00
parent 2352a47ab8
commit ff3318409f
9 changed files with 140 additions and 1 deletions

7
.htaccess Executable file
View File

@ -0,0 +1,7 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>