From ebf12b791a2edadb55560caebfe4dc95c392b2f5 Mon Sep 17 00:00:00 2001 From: liangshitang Date: Wed, 25 Sep 2019 13:19:30 +0800 Subject: [PATCH] test --- .gitignore | 3 +++ .htaccess | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 .gitignore create mode 100644 .htaccess 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] +