diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bdae462 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +.idea +composer.lock diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..463066b --- /dev/null +++ b/.htaccess @@ -0,0 +1,7 @@ + + Options +FollowSymlinks + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} / [NC] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^(.*)$ /public/index.php/$1 [QSA,PT,L] +