如何在Codeigniter中为http:// localhost创建控制器?

Bab*_*ker 0 php .htaccess mod-rewrite codeigniter url-rewriting

我正在使用codeigniter并且正在考虑如何创建主页控制器,http:// localhost的控制器.截至目前,我可以访问http:// localhost / {controller}的所有控制器,但不仅仅是localhost.我的.htaccess如下:

RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|sandbox|scripts|robots\.txt)
RewriteRule ^(.*)$ /index.php/test/$1 [L]
Run Code Online (Sandbox Code Playgroud)

imm*_*imm 5

将default_controller设置为您要在routes.php中使用的控制器的名称