Re: Помогите переписать .htaccess
maxya
nginx-forum на nginx.us
Ср Сен 1 02:57:42 MSD 2010
Заменил
[code]
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
}
[/code]
на вот это
[code]
location / {
root /var/www/siteroot;
index index.php;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
}
}
[/code]
Заработало :)
Всем спасибо за помощь :)))
Posted at Nginx Forum: http://forum.nginx.org/read.php?21,125753,125827#msg-125827
Подробная информация о списке рассылки nginx-ru