后台内容列表展示字段样式定义在conf/Functions.php下面format_fields()函数里面
站点关闭模板路径在app\home\c\CommonController.php下面close()函数里面
站点验证码函数定义在\frphp\extend\Vercode.php下面Imagecode里
站点前台验证码函数app\home\c\CommonController.php下面vercode()函数里面
站点后台验证码函数\app\admin\c\LoginController.php下面vercode()函数里面
后台删除缩略图js函数deleteImage_auto()定义在\app\admin\t\tpl\common\fields.html文件
系统提示函数修改frphp\common\Functions.php
伪静态禁止某文件夹执行某种文件
apache:
RewriteRule (uploads|static/upload)/(.*).(php)$ – [F]
RewriteRule (static/template)/(.*).(html)$ – [F]
nginx:
location ~* ^/(uploads|static/upload)/.*.(php|php5)$ {
deny all;
}
location ~* ^/(static/template)/.*.(html)$ {
deny all;
}