I have tried with this configuration and the same thing happens, I think I'm doing it wrong location ~ { root /r/a.php; index a.php; rewrite ^/r/?$ /r...
https://pastebin.com/bRr20unF Здравствуйте, я хочу сократить URL-адрес, который я использую первый: nginx.com/r.php?b=123456 к nginx.com/r/123456 Я пробовал это, но это не ср...
я думаю, я почти понял с этим работает: location /r/a.php { try_files $uri $uri/ @rewrite1; } location @rewrite1 { rewrite ^/r/?$ /r/a.php?b=main? last; } но он ...