在 Codeigniter 中,有些 URI 通过 index.php,有些则不通过
基本上一个控制器(controller/topics.php, http://192.168.1.50/topics)通过 CI 的索引传递.php 就像它想象的那样,还有另一个(controller/user.ph…
代码点火器404_override
中设置了 $routes['404_override'] = 'city/switch_site' 我现在已经在我的城市控制器 类 City extends CI_Controller { function __construct() { pa…
jQuery 在 codeigniter 中查找 URI
我有一个在我的 codeigniter 站点的每个页面上运行的脚本。 jQuery(document).ready(function($) { Cufon.replace('h1') $('#term').hint() setTimeou…
Codeigniter.htaccess
抱歉我的英语不好... 我有最基本的 CodeIgniter 设置,但无法使其工作...如果我访问该网址 http://domain.com/index.php?controllerX/method 它工作正…
codeigniter 单应用程序多数据库
我将把我的代码库转移到新的 2.0 框架,只是对以下几点有几个问题 我的网址如下 example.in/city1 example.in/city1/admin example.in/city2 example.…
Codeigniter 使用 post 和 get 参数进行路由
我的 config/routes.php 文件中有以下内容: $route['(:any)'] = "dashboard/index/$1" 访问以下网址时,这将按预期工作:< strong>mysite.com/us…
Codeigniter:仅在输入 /index 段时路由可见
我正在使用 codeigniter 2.0 开发我的第一个项目,但遇到了一些问题。 在我的本地主机(MAMP 安装)上,路由一切正常。仅当我在我的域上添加副本、更…
为什么我的服务器路由被附加到所有超链接的开头?
我最近开始摆弄 CodeIgniter,并在通过 HTML 或使用锚函数执行标准超链接时遇到了问题,因为所有超链接都会在开头附加我的服务器路由。举例来说,我在…
路由到 CodeIgniter 中的多个子文件夹
我在控制器目录中设置了一个管理文件夹,在该文件夹下有 3 个独立的子文件夹,其中包含控制器。 -- Controllers ---- Admin ------ Dashboard -------…
Codeigniter:URL无解问题
我有以下网址: http://localhost.com/phpdemo/bid/tf/red? 此网址通过 This [ $route['tf/red?'] = "abc/blue" ] 重定向到以下网址: http://localh…
尝试访问 CodeIgniter 中的现有控制器时给出 404
我正在安装相当新的 CodeIgniter 2.0。 我有一个包含此代码的 htaccess 文件 RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) Re…
Codeigniter 自定义路由显示根站点背景图像?
好的,我正在做一个项目: http://www.d2burke.com/exp /intern/ BaseURL 设置为: '/exp/intern/' .htaccess 重新路由到 /exp/intern/index.php 设置…