Actully我是一名java开发人员,也是PHP新手,我使用Code Ignitor作为我的project.Setup工作的框架工作在我的本地机器上。并使用以下网址访问网站。
HTTP://localhost/businesscaliber/index.php/home
Home是HomeController。在这里我想要上下文
http:// localhost / businesscaliber 而非上面的网址。
答案 0 :(得分:2)
您需要重写htaccess。
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
答案 1 :(得分:1)
您需要在CodeIgniter中使用Routing功能。
在application / config / routes.php文件下,
将以下行修改为:
$route['default_controller'] = 'home';
然后按照指南删除index.php:CodeIgniter URLs
答案 2 :(得分:0)
您需要为Apache使用.htaccess和mod_rewrite。 更多信息:http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html
答案 3 :(得分:0)
有关更详细的说明,请查看Codeigniter Wiki