Block one specific URL by htaccess

前端 未结 2 1562
灰色年华
灰色年华 2020-12-20 15:55

I could not find the solution to this question. Maybe I used the wrong search terms? (htaccess block url, htaccess block single url, block specific url htaccess, ...)

相关标签:
2条回答
  • 2020-12-20 16:03

    this can also be used:

    RewriteCond %{HTTP_REFERER} 40224/redaktionelle-frage-wann-antwort-wann-lediglich-kommentar [NC,OR]
    
    0 讨论(0)
  • 2020-12-20 16:06

    When someone requests:

    https://www.mathelounge.de/40224/redaktionelle-frage-wann-antwort-wann-lediglich-kommentar
    

    The %{REQUEST_URI} variable is:

    /40224/redaktionelle-frage-wann-antwort-wann-lediglich-kommentar
    

    And the regex ^40224\/$ will never match that. In fact, you don't even need a RewriteCond in this instance, just put the pattern in the rule:

    RewriteRule ^40224/redaktionelle-frage-wann-antwort-wann-lediglich-kommentar$ - [F]
    

    Note that the pattern in the rule itself doesn't lead with a /, it's because for the rule, it's stripped off, but for the %{REQUEST_URI} var, it's preserved.

    0 讨论(0)
提交回复
热议问题