
Linux
文章平均质量分 56
爱吃瓜的程序猿
PHP
MySQL
前端
展开
-
PHP页面地址隐藏index.php
在server中添加以下代码,有无index.php对网站访问无影响if (!-e $request_filename) {rewrite ^/index.php(.*)$ /index.php?s=$1 last;rewrite ^(.*)$ /index.php?s=$1 last;...原创 2019-12-26 10:33:07 · 676 阅读 · 0 评论 -
linux系统如何设置定时任务
*/2 * * * * 执行时间 /bin/sh 调用shell /home/hello.sh 调用定时器文件*/2 * * * * /bin/sh /home/hello.sh原创 2019-11-21 14:05:46 · 334 阅读 · 0 评论 -
Linux的DNS服务器配置及xampp安装
第3周学习内容已有 1217 次阅读2014-3-10 09:17 |个人分类:12计网--Linux服务器?:vmware nat 与 桥接 的区别?: linux 发行版 http://zh.wikipedia.org/wiki/Linux%E5%8F%91%E8%A1%8C%E7%89%88?: 怎样(远程)管理linux服务器?: DSL 网络功原创 2014-06-30 15:26:50 · 524 阅读 · 0 评论 -
论坛安装教程
Discuz!X3.1 全新安装图文教程[复制链接]Discuz! 是腾讯旗下 Comsenz 公司推出的以社区为基础的专业建站平台,帮助网站实现一站式服务。让论坛(BBS)、个人空间(SNS)、门户(Portal)、群组(Group)、应用开放平台(Open Platform)充分融合于一体,帮助网站实现一站式服务。原创 2023-12-08 09:27:17 · 1499 阅读 · 1 评论 -
ECS云服务器安装mysql服务器
操作系统:Ubuntu 16.04 64位安装mysql数据库apt-get updateapt-get install mysql-server mysql-client;设置无密码登录:vi /etc/mysql/mysql.conf.d/mysql.cnf找到[mysqld]添加代码skip-grant-tables保存退出service mysql restart重启数据库mysql -u...原创 2018-05-22 16:54:57 · 284 阅读 · 0 评论