css旋转动画
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-wi…
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-wi…
删除 C:\Users\Administrator\AppData\Roaming\Docker 文件夹。重新启动
docker pull nginx docker run --name mynginx -p 80:80 -v /D/work/www:/var/www -v /D/woek/nginx/conf/conf.d:/etc/nginx/conf.d -d nginx nginx.conf…
添加 location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } }
zai配置文件中添加 location ~ ^/(uploads|assets)/.*\.(php|php5|jsp)$ { deny all; } 必须要加在  …
因为开启了 数据筛选,关闭掉数据筛选即可
location ~*([0-9])$ { if (!-e $request_filename){ rewrite ^(.*)$ /$1.html last; break; } root /www/wwwroot/cdtrans/public; }