Имеется сервер Centos nginx + php-fpm без участия апача
Все настройки и необходимые модули вроде стоят правильно...
htaccess конвертировал тут winginx.com/ru/htaccess
Получилось:
# nginx configuration charset utf-8; location /.htaccess { return 403; } location /credits.txt { return 403; } location /readme.txt { return 403; } location ~ ^/license.(.*).txt$ { return 403; } autoindex off; location / { if (!-e $request_filename){ rewrite ^/(.+)/$ /$1 redirect; } if (!-e $request_filename){ rewrite ^(.*)$ /index.php break; } if ($http_host ~* "^www.sitename\.ru$"){ rewrite ^(.*)$ http://sitename.ru/$1 redirect; } } location /sitemap { rewrite ^/sitemap(.*).xml$ /cache/static/sitemaps/sitemap$1.xml break; }
Помогите осознать проблему :)