Skip to content

Commit 1d2e4c5

Browse files
committed
Update README
1 parent f6a1ed7 commit 1d2e4c5

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,23 @@ codeigniter/
3636
$ composer create-project kenjis/codeigniter-composer-installer codeigniter
3737
```
3838

39-
Above command installs `public/.htaccess` to remove `index.php` from URL AND `application/config/config.php`'s Line75 edit to `$config['index_page'] = 'index.php';`. If you don't need it, please remove it.
39+
Above command installs `public/.htaccess` to remove `index.php` in your URL. If you don't need it, please remove it.
40+
41+
And it changes `application/config/config.php`:
42+
43+
~~~
44+
$config['composer_autoload'] = FALSE;
45+
46+
$config['composer_autoload'] = realpath(APPPATH . '../vendor/autoload.php');
47+
~~~
48+
49+
~~~
50+
$config['index_page'] = 'index.php';
51+
52+
$config['index_page'] = '';
53+
~~~
54+
55+
#### Install Translations for System Messages
4056

4157
If you want to install translations for system messages:
4258

0 commit comments

Comments
 (0)