【发布时间】:2011-11-30 09:19:29
【问题描述】:
我正在使用 codeigniter,并且正在考虑如何创建主页控制器,即http://localhost 的控制器。截至目前,我可以访问所有http://localhost/{controller} 的控制器,但不仅仅是本地主机。我的 .htaccess 如下:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|sandbox|scripts|robots\.txt)
RewriteRule ^(.*)$ /index.php/test/$1 [L]
【问题讨论】:
-
可以在config/routes.php中设置默认控制器
标签: php .htaccess codeigniter mod-rewrite url-rewriting