From 407a657d5a9e15b8858da50f9c0a4e63b96effb4 Mon Sep 17 00:00:00 2001 From: Springshen Date: Wed, 24 Oct 2018 14:13:38 +0800 Subject: [PATCH] Create .htaccess If there is no .htaccess it may cause 404 --- sso.com/.htaccess | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sso.com/.htaccess diff --git a/sso.com/.htaccess b/sso.com/.htaccess new file mode 100644 index 0000000..c7b26f6 --- /dev/null +++ b/sso.com/.htaccess @@ -0,0 +1,6 @@ + + RewriteEngine on + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] +