Codeigniter不会重定向netbeans

时间:2012-12-05 11:47:53

标签: apache codeigniter url-rewriting

我有这个网址:

http://localhost:85/WebCamClone/Home

但它只会像这样加载:

http://localhost:85/WebCamClone/index.php/Home

我试图像这样把htaccess规则:

  RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L] 

但它没有用。我还应该尝试什么?

这就是我的apache配置文件中的内容:

    <Directory />
    Options FollowSymLinks
    AllowOverride all
    Order deny,allow
    Deny from all
</Directory>

3 个答案:

答案 0 :(得分:1)

application/config/config.php中,您是否已从index.php移除了$config['index_page'],以便它看起来像:

$config['index_page'] = '';

答案 1 :(得分:1)

.htaccess文件

中尝试使用此代码一次
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L] 

答案 2 :(得分:1)

问题出在apache配置文件中..我必须转到它的文件并替换allowoverride none以允许覆盖所有