摘要: windows安装步骤: https://blog.csdn.net/chinawangfei/article/details/69647313 系统环境 centos7,php7.0 安装有关依赖 yum -y install gcc glibc-devel make ncurses-devel 阅读全文
posted @ 2021-01-02 18:42 coder_xds 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 我这里在一台电脑上通过不同端口的方式实现一主多从。 1.修改主redis服务器配置 查看本机ip [root@localhost etc]# ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN gro 阅读全文
posted @ 2020-12-06 22:39 coder_xds 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 文章转载自 https://www.cnblogs.com/peter-yan/p/7661741.html https://blog.csdn.net/chuifuhuo6864/article/details/100882211 特点 apache的rewrite模块进行rewrite的时候,需 阅读全文
posted @ 2020-12-01 17:51 coder_xds 阅读(140) 评论(0) 推荐(0) 编辑
摘要: url rewrite重写后前台的html,js,css文件找不到,页面能正常访问,配置规则如下 Options +FollowSymLinks -MultiviewsRewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENAME} !-d # 阅读全文
posted @ 2020-12-01 17:48 coder_xds 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 访问已配置好的重写规则的项目的项目是,提示No input file specified.这个原因在于使用的PHP5.6是fast_cgi模式,而在某些情况下,不能正确识别path_info所造成的错误。默认的.htaccess里面的规则Options +FollowSymLinks -Multiv 阅读全文
posted @ 2020-12-01 17:34 coder_xds 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1.图片防盗 r.com/img.php: <img src="http://r.com/img/logo.jpg"/>.htaccess:当来源不为空且不是以localhost开始,则判定为非法 RewriteCond %{HTTP_REFERER} !^$ #RewriteCond %{HTTP 阅读全文
posted @ 2020-11-30 16:33 coder_xds 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 文章转载自: https://www.cnblogs.com/-beyond/p/8325144.html https://blog.csdn.net/expleeve/article/details/6621885/ 图-1:重写规则集中的控制流 使用apache伪静态需要修改apache配置文件 阅读全文
posted @ 2020-11-28 21:15 coder_xds 阅读(434) 评论(0) 推荐(0) 编辑
摘要: <?php use Swoole\Http\Server; $http = new Server('0.0.0.0', 9501); $http->on('request', function($request, $response) { // var_dump($response); $filen 阅读全文
posted @ 2020-11-19 23:52 coder_xds 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1.下载composer.phar文件 https://install.phpcomposer.com/composer.phar 2.将composer.phar移动到与php.exe程序同一个目录,并创建composer.bat composer.bat文件添加如下一段内容 @php "%~dp 阅读全文
posted @ 2020-11-17 00:36 coder_xds 阅读(1462) 评论(0) 推荐(0) 编辑
摘要: 1.打开项目根目录,使用 git init 命令,初始化一个git本地仓库(项目),会在本地创建一个 .git 的文件夹 git init 2.在码云创建项目TestApp 3.使用git remote add origin TestApp的git克隆地址 //添加远程仓库// 示例:git rem 阅读全文
posted @ 2020-11-16 12:48 coder_xds 阅读(657) 评论(0) 推荐(0) 编辑