欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

遍历目录 里的 .htaccess 给htaccess 文件进行sed增加禁止(拒绝阻止代理访问的真实ip访问) 内容 自己亲自做的 有大用 有大大用

#!/bin/bash

#

for  file in /home/wwwroot/*/public_html/public ;do

        if [ -d "$file" -a -f "${file}/.htaccess" ];then

                        HTACCESS=${file}/.htaccess

                        sed -i '$a \order deny,allow \n SetEnvIf X-Forwarded-for "0.0.0.0" DenyAccess \n Deny from env=DenyAccess ' $HTACCESS

                        sed -i  's/\r$//g' $HTACCESS

        fi

done



普通分类: