I've got a quite interesting behavior. I want to avoid trailing slashes in URL's on my site. I've put rewrite ^/(.*)/$ /$1 permanent;
rule into my server block, so https://example.com/something/
,https://example.com/something////
redirect to https://example.com/something
;
and https://example.com/
redirects to https://example.com
But https://example.com////
is redirected to ... https://enjoygifts.ru////
(actually don't redirected, it's 200 code). Why?
Here is my server block:
server { listen 443 ssl; ... ... ssl directives ... root /var/www/mysite.com; index index.php; server_name mysite.com; rewrite ^/(.*)/$ /$1 permanent; location / { rewrite ^/.*$ /index.php last; } location ~ ^/index.php { try_files $uri =404; include /etc/nginx/fastcgi.conf; fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; } location ~ ^/storage/app/uploads/public { try_files $uri 404; } ... ... lot of similar location blocks ... }