junhan 发表于 2014-10-16 15:31:19

DEDE防黑小招

优点:可以让用户只能访问HTML页面,除了服务器安全外无优!此方法不限于DEDE,其它CMS只想静态化也可以使用
缺点:无法使用自带搜索,想搜索的话只有自己可以添加第三方搜索了
环境:LNMP 0.9

[*]                location ~ ^/(include|plus|data|后台等不想让用户访问的目录)/ {
[*]                         allow 允许访问的IP;
[*]                         deny all;
[*]                         index index.php index.html index.htm;
[*]                            location ~ .*\.(php|php5)?$ {
[*]                              try_files $uri =404;
[*]                              fastcgi_passunix:/tmp/php-cgi.sock;
[*]                              fastcgi_index index.php;
[*]                              include fcgi.conf;
[*]                            }
[*]                        }复制代码

效果:非允许的IP访问限制的目录403

没有独立IP怎么办?
可以用一些非常低价的有独立IP的VPS搭一个扶墙就可以了

hostvps 发表于 2014-10-16 15:35:11

高人啊

ballpen 发表于 2014-10-16 15:39:25

怎么用 ?nginux 规则?

woshigaozhen 发表于 2014-10-16 16:03:09

万一扶墙跑路了怎么办?要附上破解方法啊。呵呵
页: [1]
查看完整版本: DEDE防黑小招