Просмотр поста

.
UJIN

Проблема считывания файла htaccess на локальном сервере.
Создал виртуальный хост, заполнив его так:

Настройки виртуального хоста (+/-)

<VirtualHost *:80>
ServerAdmin admin@test.com
ServerName test.com
ServerAlias www.test.com
DocumentRoot /var/www/test.com/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Вот содержание htaccess файла.
.htaccess (+/-)

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

Менял файл default
/etc/apache2/sites-available/default (+/-)

NameVirtualHost *
<virtualhost *>
ServerAdmin admin@site.com

DocumentRoot /var/www/
<directory>
Options FollowSymLinks
AllowOverride None
</directory>
<directory /var/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</directory>
</virtualhost>

Ничего не помогает :-(
Что это может быть еще?