我想刪除index.php,在我的本地主機,但它似乎不工作,它的http://localhost/testing
。刪除本地codeigniter index.php
我把.htacces放在htdocs下的'testing'目錄下。
LoadModule rewrite_module modules/mod_rewrite.so
在Apache/conf上也沒有選中。
這裏我的.htaccess:
RewriteEngine On
RewriteBase /testing/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /testing/index.php/$1 [L]
這裏我的配置:
$config['base_url'] = "http://localhost/testing";
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
當我訪問登錄控制器,它沒有找到。
未找到
所請求的網址/測試/登錄此服務器上未找到。
我真的不知道接下來要做什麼。任何幫助,將不勝感激。
有沒有其他設置? –