Hi,

I have this rule in my nginx config file

	location ~* \/(fileA.txt|fileB.txt)$ {
		return 404 'nothing here';
	}

but it’s not working

but

	location /fileA.txt {
		return 404 'nothing here';
	}

is working…

Any idea what’s wrong ?

Thanks.

  • Rick_C137@programming.devOP
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 month ago

    Actually I don’t think the error lay in the regex.

    because

    	location /fileA.txt {
    		return 404 'nothing here';
    	}
    

    Does not works either…