Code Igniterを理解し、チュートリアルのこの特定のセクションに従っていました。
http://codeigniter.com/user_guide/tutorial/create_news_items.html
[ニュースアイテムの作成]をクリックするまで、すべてが機能します。404ページを受け取り、URLバーは次のようになります。
http://localhost/tut/index.php/news/localhost/tut/index.php/news/create
多分それはルートのせいだと思います:
$route['default_controller'] = "news/index";
$route['404_override'] = '';
$route['news/(:any)'] = 'news/view/$1';
$route['news'] = 'news'; // what's this for?
$route['news/create'] = 'news/create';
また、私のconfig.php:
$config['base_url'] = 'localhost/tut';
何か案は?