1.路由配置
Route::domain('admin', function () {//系统管理Route::rule('/system/saveSubscriber$', 'admin/system/saveSubscriber','POST'); });
2.nginx 配置文件
listen 80; server_name xxx.com admin.xxx.com;
3.tp项目public下创建 nginx.htaccess 文件
location / {index index.html index.htm index.php;autoindex off;if (!-e $request_filename) {rewrite ^(.*)$ /index.php?s=/$1 last;break;} }
4.项目的debug模式已打开,但是某方法出错报错时,不出现具体的错误提示,还是只是出现404报错。
解决方法:nginx配置文件中的error_page 404 /404.html;注释,即可显示错误信息,根据错误信息解决,如下图
5.未使用控制器后缀却在新建控制器文件时名称后缀加了Controller。如Index.php写做IndexController.php。