From 4280ced0e62b74e3e81d48f8066b888d99193e5d Mon Sep 17 00:00:00 2001 From: An Phan Date: Sun, 12 Jul 2015 23:41:27 +0800 Subject: [PATCH] Backtick and unbacktick --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93e82cd..b10bedd 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,7 @@ Allow from xxx.xxx.xxx.xxx # Require all denied # Require ip xxx.xxx.xxx.xxx ``` -`xxx.xxx.xxx.xxx` is your IP. If you replace the last three digits with 0/12 for example, this will specify a range of IPs within the same network, thus saving you the trouble to list all allowed IPs separately. [Source](http://speckyboy.com/2013/01/08/useful-htaccess-snippets-and-hacks/) +`xxx.xxx.xxx.xxx` is your IP. If you replace the last three digits with `0/12` for example, this will specify a range of IPs within the same network, thus saving you the trouble to list all allowed IPs separately. [Source](http://speckyboy.com/2013/01/08/useful-htaccess-snippets-and-hacks/) Now of course there's a reversed version: @@ -221,7 +221,7 @@ RewriteCond %{SCRIPT_FILENAME} -f RewriteRule "(^|/)\." - [F] ``` -Alternatively, you can just raise a `Not Found` error, giving the attacker dude no clue: +Alternatively, you can just raise a "Not Found" error, giving the attacker dude no clue: ``` apacheconf RedirectMatch 404 /\..*$ ```