我在Codeigniter中创建了项目。这个项目在localhost Wamp工作,但我上传的在线服务器无法正常工作
int main(int n_of_args, char *args[]);
但在服务器上传后,此网址无法正常工作
http://localhost/newjob/index.php/home
和
http://example.com/index.php/home
控制器
http://example.com/
配置
<?php class Home extends Controller {
public function index() {
echo "home page";
} } ?>
答案 0 :(得分:0)
我认为http://example.com/index.php已经足够了,因为它是一个文件而且文件中没有文件夹
答案 1 :(得分:0)
如果您的家庭控制器名称以H开头(&#34; Home.php&#34;),请重命名为home.php。