Добрый вечер.
Не подключаются стили. Прописал типы и в конфиге апача
#-----------------------------------------------#
# Конфигурация MIME
#-----------------------------------------------#
<IfModule mime_module>
TypesConfig "%sprogdir%/modules/http/%httpdriver%/conf/mime.types"
#AddType application/x-gzip .tgz
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType image/x-icon .ico
AddHandler cgi-script .cgi .pl
AddType application/x-httpd-php .php .php5 .phtml
#AddHandler type-map var
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
AddType text/css .css
AddType text/javascript .js
</IfModule>
и в .htaccess
addDefaultCharset UTF-8
#AddType 'text/css; charset=UTF-8' css
<IfModule mod_mime.c>
AddType text/css .css
AddType text/javascript .js
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymLinks -Indexes
RewriteCond ${REQUEST_FILENAME} !-f
RewriteCond ${REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
также атрибут type='text/css' дописывал в link
Не работает.
Пробовал nginx - заводится, но там не могу настроить mod_rewrite, когда добавляю в конфиг строки open server не заводится. Сколько бьюсь уже, работа стоит) может кто помочь, ребята?
Спасибо.
charset utf-8;
location / {
rewrite ^(.*)$ /index.php break;
}