mirror of
https://github.com/phanan/htaccess.git
synced 2018-11-08 13:39:40 +01:00
Fixes #16
This commit is contained in:
parent
b9a6f3584d
commit
eda62a94e6
1 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ But wait, this will lock you out from your content as well! Thus introducing...
|
|||
|
||||
### Deny All Access Except Yours
|
||||
``` apacheconf
|
||||
Order deny, allow
|
||||
Order deny,allow
|
||||
Deny from All
|
||||
Allow from xxx.xxx.xxx.xxx
|
||||
```
|
||||
|
@ -137,7 +137,7 @@ Now of course there's a reversed version:
|
|||
|
||||
### Allow All Access Except Spammers'
|
||||
``` apacheconf
|
||||
Order deny, allow
|
||||
Order deny,allow
|
||||
Allow from All
|
||||
Deny from xxx.xxx.xxx.xxx
|
||||
Deny from xxx.xxx.xxx.xxy
|
||||
|
|
Loading…
Reference in a new issue