До них, после них или в них вставлять? Потому что после я запихал, не работает..
Строки вот такие:
# отдаем браузеру
location ~* \.(mp3|js|css|png|jpg|jpeg|gif|ico|html|font|ttf|woff2|woff|svg|otf)$ {
expires max;
}
charset utf-8; autoindex off; location /login { rewrite ^/login/*$ /?module=login break; } location /register { rewrite ^/register/*$ /?module=register break; } location /restore { rewrite ^/restore/*$ /?module=restore break; rewrite ^/restore/([a-z,A-Z,0-9]+)/*$ /?restore_code=$1 break; } location /uid { rewrite ^/uid([0-9]+)/*$ /?module=user&id=$1 break; } location /logout { rewrite ^/logout/*$ /?module=do_login&logout=1 break; } location /active { rewrite ^/active/([a-z,A-Z,0-9]+)/*$ /?active_code=$1 break; } location /functions.php { deny all; }