友人C

把一件事情做到极致,无惧行业周期变化,天塌下来,这件事情都是赚钱的!

https跳转到自定义404页面的方法

最近发现网站http能正常跳转自定义404页面,但是https就不能跳转到自定义404页面。解决办法:ErrorDocument 400 /errpage/400.html ErrorDocument 403 /errpage/403.html ErrorDocument 404 /errpage/404.html ErrorDocument 503 /errpage/503.html在.h...

小黄  2019-10-29  暂无评论

帝国cms被非法上传脚步图片的解决办法

啊里云警报帝国cms网站突然莫名其妙的多了一些脚步图片,一头蒙蔽的我查看了网站的日志,发现原来是黑客通过post方法提交脚步图片到我网站目录。攻击的路径:e/DoInfo/ecms.php应付对策加上登录认证:$mloginauthr=qCheckLoginAuthstr(); if(!$mloginauthr['islogin']){ die('非法提交'); }继续观察。。。

小黄  2019-10-25  暂无评论

wdcp配置https的方法

1、阿里云申请免费证书。2、解压分别有三个文件:xxx.key、xxxchain.crt、xxxpublic.crt上传到服务器。3、啊里云服务器的安全组必须要打开443端口。配置防火墙,命令开启443端口进入iptables目录输入(/etc/sysconfig/):iptables -I INPUT -p tcp --dport 443 -j ACCEPT service iptabl...

小黄  2019-10-21  暂无评论

wdcp添加https的方法

1、阿里云申请免费证书。2、解压分别有三个文件:xxx.key、xxxchain.crt、xxxpublic.crt上传到服务器。3、啊里云服务器的安全组必须要打开443端口。4、wdcp防火墙必须打开443端口。5、打开apache配置文件httpd.conf,查找#Include conf/extra/httpd-ssl.conf #LoadModule ssl_module modul...

小黄  2019-10-21  暂无评论

apache添加日期日志的方法

httpd.conf找到这两句修改成下面语句ErrorLog "|/httpd-xxxx/bin/rotatelogs /httpd-xxx/logs/log/error-%Y-%m-%d.log 86400 480" CustomLog "|/httpd-xxxx/bin/rotatelogs /httpd-xxxx/logs/log/access_log-%...

小黄  2019-10-11  暂无评论

隐藏apache版本号的方法

httpd.conf 查找Include conf/extra/httpd-default.conf把前面#去掉,并修改文件为ServerTokens Prod ServerSignature off

小黄  2019-10-10  暂无评论

隐藏php版本号的方法

php.ini将默认的expose_php = On修改为expose_php = Off重启php service httpd restart

小黄  2019-10-10  暂无评论

linux crontab 定时器设置

命令crontab -e添加:00 10 * * * /usr/bin/curl http:/www.xxxx.com/xxxx.php上面语句表示每天10点访问一次php文件";

小黄  2019-10-01  暂无评论

git基本命令

git init 变成可以管理的仓库 git status 查看当前状态 git add .添加到仓库中 git commit -m "XXXXX" 提交到仓库 git remote add origin https://github.com/littleFFFF... 仓库进行关联 git push -u origin master 推送到远程仓库(第一次需要) ...

小黄  2019-10-01  暂无评论