!20 modified 解决apache服务器问题,默认路由

Merge pull request !20 from Stefan阿钢/master
This commit is contained in:
Zhao 2019-12-19 10:13:52 +08:00 committed by Gitee
commit 974e192c00
2 changed files with 3 additions and 1 deletions

View File

@ -4,5 +4,5 @@
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

View File

@ -11,6 +11,8 @@
use think\facade\Route;
Route::miss('api/Miss/index');
Route::group('admin', function() {
Route::rule(
'Login/index', 'admin/Login/index', 'post'