$ sudo sudo chgrp staff /Library/WebServer/Documents/
$ sudo chmod 775 /Library/WebServer/Documents/
После этого все мое приложение будет находиться в папке / Library / WebServer / Documents /
Как и 'testing'
/ Library / WebServer / Documents / testing
$ echo "Hello World" >> /Library/WebServer/Documents/testing/index.php
http://localhost/testing
==> it should appear Hello World
теперь в папке '/ Library / WebServer / Documents /' вы поместите папку CI, которую вам нужно будет добавить
.htaccess
RewriteEngine On
RewriteCond $1 !^(index\.php)
RewriteRule ^(.+)$ index.php?$1 [L]
AddHandler php5-script .php
в ваш CI_Folder / application / config.php
$config['index_page'] = '';
И я думаю, это все!Наслаждайтесь!