ローカルホストで index.php を削除しようとしていますが、動作していないようhttp://localhost/testing
です。
htdocs の下の「testing」ディレクトリに .htacces を配置しました。
LoadModule rewrite_module modules/mod_rewrite.so
at 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';
ログインコントローラーにアクセスしても見つかりません。
見つかりません
要求された URL /testing/login がこのサーバーで見つかりませんでした。
次に何を試すべきか本当にわかりません。どんな助けでも大歓迎です。