0

我正在尝试设置代码点火器。目录结构是

  • 应用
  • 系统
  • public_html

因为应用程序和系统在 public_html 之外,所以我在里面设置变量public_html/index.php

$system_path = '../system'; 

$application_folder = '../application';

也在 application/config/routes 默认控制器设置为我的家庭控制器

$route['default_controller'] = "home";

现在,当我指向www.mysite.com/index.php控制器时,它应该正确返回视图(从我的默认主控制器),但我无法使用访问此视图www.mysite.com/home

这是为什么 ?

4

1 回答 1

3

您需要修改您的 htaccess 文件以删除 index.php 以便能够在www.mysite.com/home. 您还需要在配置文件中将 index_page 的值设置为 ''。

查看有关 URL 的 CodeIgniter 文档,了解如何执行此操作的示例。

于 2013-10-28T17:52:43.183 回答