1

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';

何か案は?

4

1 に答える 1

1

このtheadによると、あなたはあなたのbase_urlセットを間違っています。スレッドごとのアドバイスに従ってください。

于 2012-09-27T19:31:35.867 に答える