3

私はこのコードを通してindex.phpを削除しました:

RewriteEngine on
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteRule ^(.*)$ /leet/index.php/$1 [L]

しかし、フォームを送信<?=form_open('signup');?>してページが更新されると、URLの値がに変更されlocalhost/ci/index.php/signupます。

削除することはできますか?

4

1 に答える 1

16

ご覧のとおり、application\configディレクトリ内のconfig.phpを確認する必要があります。

$config['index_page'] = 'index.php';

これをに変更します

$config['index_page'] = '';

お役に立てば幸いです。

于 2012-09-29T14:52:39.797 に答える