@@ -82,7 +82,7 @@ class Address extends Common
*
* @return \think\Response
*/
- public function default()
+ public function getdefault()
{
$user = auth_user();
$userAddress = UserAddressModel::default()->where('user_id', $user->id)->find();
@@ -22,6 +22,7 @@ return [
'app_debug' => true,
// 应用Trace
'app_trace' => Env::get('app.trace', false),
+ 'app_trace' => true,
// 应用模式状态
'app_status' => '',
// 是否支持多模块
@@ -1,8 +0,0 @@
-location ~* (runtime|application)/{
- return 403;
-}
-location / {
- if (!-e $request_filename){
- rewrite ^(.*)$ /index.php?s=$1 last; break;
- }