在本地可以打开 本地的环境是 apache +php5.3
上传至服务器以后 就打不开服务器配置是w主机的 iis7.0 +php是5.4.30
路径确认是没有错误,本地能打开 源码也不存在问题 上传至服务器上打开就是显示404 找不到页面 换成?m=Index&a=excelExport 也是404
类代码如下:
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function excelExport() {
$list = M("member")->field("member_id,name,year,years,card,company,note,archives,xueli,professional")->order("member_id ")->limit(30)->select();
$title = array( '毕业年份', '毕业年份', '毕业年份', '毕业年份', '身份证', '单位名称', '报道证备注', '档案处理情况', '学历', '专业'); //设置要导出excel的表头
exportExcel($list, '下载文件', $title);
}求解决 最佳答案